diff options
author | James Almer <jamrial@gmail.com> | 2022-07-30 11:05:22 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-08-01 20:25:09 -0300 |
commit | 9fb80bf760f0a74000f7f50b2080d519eee970fd (patch) | |
tree | 515a95c3e0e56b4ee05ff8d83dfee0cd69c046f4 /libavcodec | |
parent | 8e6759f10c788ce25f89e7e692d24e8e4ce527f2 (diff) | |
download | ffmpeg-9fb80bf760f0a74000f7f50b2080d519eee970fd.tar.gz |
avcodec/aacdec_fixed: add missing priv_class
This enables the same input options as the float decoder.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/aacdec_fixed.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/aacdec_fixed.c b/libavcodec/aacdec_fixed.c index 392a85e46a..ddfa160adc 100644 --- a/libavcodec/aacdec_fixed.c +++ b/libavcodec/aacdec_fixed.c @@ -468,6 +468,7 @@ const FFCodec ff_aac_fixed_decoder = { .p.channel_layouts = aac_channel_layout, #endif .p.ch_layouts = aac_ch_layout, + .p.priv_class = &aac_decoder_class, .p.profiles = NULL_IF_CONFIG_SMALL(ff_aac_profiles), .flush = flush, }; |