Skip to content

Commit

Permalink
aac: Mark internal function as static
Browse files Browse the repository at this point in the history
  • Loading branch information
radioactiveman committed Jan 25, 2025
1 parent c259c57 commit cdf835b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aac/aac.cc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const char * const AACDecoder::mimes[] = {"audio/aac", nullptr};
/// \param num (out) number of audio frames in this ADTS frame
/// \return size of the ADTS frame in bytes
/// aac_parse_frames needs a buffer at least 8 bytes long
int aac_parse_frame (unsigned char * buf, int *srate, int *num)
static int aac_parse_frame (unsigned char * buf, int * srate, int * num)
{
int i = 0, sr, fl = 0;
static int srates[] =
Expand Down

0 comments on commit cdf835b

Please sign in to comment.