diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-12-06 11:02:17 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-12-07 11:42:26 +0100 |
commit | d6dc5d15af0d8617611281a34a2c3f9ced149ccf (patch) | |
tree | 5ac5572030422b3c8c0920db35ec414cf755c6da /libavcodec | |
parent | 68e547ae8b455e5e2b60839f35c359d77a6d94bc (diff) | |
download | ffmpeg-d6dc5d15af0d8617611281a34a2c3f9ced149ccf.tar.gz |
aacdec: fix aac_static_table_init() prototype
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/aacdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index e2e02b486d..966a2eeacc 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -1005,7 +1005,7 @@ static void reset_predictor_group(PredictorState *ps, int group_num) sizeof(ff_aac_spectral_codes[num][0]), \ size); -static av_cold void aac_static_table_init() +static av_cold void aac_static_table_init(void) { AAC_INIT_VLC_STATIC( 0, 304); AAC_INIT_VLC_STATIC( 1, 270); |