diff mbox series

[FFmpeg-devel,1/2] avcodec/aacdec_fixed: add missing priv_class

Message ID 20220730140821.3518-1-jamrial@gmail.com
State Accepted
Commit 9fb80bf760f0a74000f7f50b2080d519eee970fd
Headers show
Series [FFmpeg-devel,1/2] avcodec/aacdec_fixed: add missing priv_class | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 fail Make fate failed

Commit Message

James Almer July 30, 2022, 2:08 p.m. UTC
This enables the same input options as the float decoder.

Signed-off-by: James Almer <jamrial@gmail.com>
---
 libavcodec/aacdec_fixed.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

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,
 };