You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-29 05:57:37 +02:00
avcodec/codec_internal: Avoid deprecation warnings for channel_layouts
AVCodec.channel_layouts is deprecated and Clang (unlike GCC) warns when setting this field in a codec definition. Fortunately, Clang (unlike GCC) allows to use FF_DISABLE_DEPRECATION_WARNINGS inside a definition (of an FFCodec), so that one can create simple macros to set AVCodec.channel_layouts that also suppress deprecation warnings for Clang. (Notice that some of the codec definitions were already inside FF_DISABLE/ENABLE_DEPRECATION_WARNINGS (that were not guarded by FF_API_OLD_CHANNEL_LAYOUT); these have been removed. Also notice that setting AVCodec.channel_layouts was not guarded by FF_API_OLD_CHANNEL_LAYOUT either, so testing disabling it it without removing all the codeblocks would not have worked.) Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@@ -123,7 +123,6 @@ av_cold int ff_ac3_float_encode_init(AVCodecContext *avctx)
|
||||
return ff_ac3_encode_init(avctx);
|
||||
}
|
||||
|
||||
FF_DISABLE_DEPRECATION_WARNINGS
|
||||
const FFCodec ff_ac3_encoder = {
|
||||
.p.name = "ac3",
|
||||
CODEC_LONG_NAME("ATSC A/52A (AC-3)"),
|
||||
@@ -138,11 +137,8 @@ const FFCodec ff_ac3_encoder = {
|
||||
AV_SAMPLE_FMT_NONE },
|
||||
.p.priv_class = &ff_ac3enc_class,
|
||||
.p.supported_samplerates = ff_ac3_sample_rate_tab,
|
||||
#if FF_API_OLD_CHANNEL_LAYOUT
|
||||
.p.channel_layouts = ff_ac3_channel_layouts,
|
||||
#endif
|
||||
CODEC_OLD_CHANNEL_LAYOUTS_ARRAY(ff_ac3_channel_layouts)
|
||||
.p.ch_layouts = ff_ac3_ch_layouts,
|
||||
.defaults = ff_ac3_enc_defaults,
|
||||
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
|
||||
};
|
||||
FF_ENABLE_DEPRECATION_WARNINGS
|
||||
|
||||
Reference in New Issue
Block a user