diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-06-07 16:13:33 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-07-08 20:10:01 +0200 |
commit | bc368575a935ace7e898dc0149c672035b07a1c0 (patch) | |
tree | 7340fb75c800f7e7852c8b197db28a92c606d01c /libavcodec/ac3enc.h | |
parent | 9a1a82d21c8a6145b9a9428eb6dabd1d28fcb626 (diff) | |
download | ffmpeg-bc368575a935ace7e898dc0149c672035b07a1c0.tar.gz |
avcodec/ac3enc: Deduplicate AVClasses
The child_class_next API relied on different AVCodecs to use
different AVClasses; yet this API has been replaced by
child_class_iterate.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/ac3enc.h')
-rw-r--r-- | libavcodec/ac3enc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/ac3enc.h b/libavcodec/ac3enc.h index c064ba4d63..6d424fdbf6 100644 --- a/libavcodec/ac3enc.h +++ b/libavcodec/ac3enc.h @@ -267,6 +267,7 @@ typedef struct AC3EncodeContext { extern const uint64_t ff_ac3_channel_layouts[19]; extern const AVOption ff_ac3_enc_options[]; +extern const AVClass ff_ac3enc_class; extern const AVCodecDefault ff_ac3_enc_defaults[]; int ff_ac3_encode_init(AVCodecContext *avctx); |