[FFmpeg-devel] [PATCH 258/281] siren: convert to new channel layout API

James Almer jamrial at gmail.com
Thu Jan 13 04:07:02 EET 2022


Signed-off-by: James Almer <jamrial at gmail.com>
---
 libavcodec/siren.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/siren.c b/libavcodec/siren.c
index bdb249144b..add1773069 100644
--- a/libavcodec/siren.c
+++ b/libavcodec/siren.c
@@ -398,8 +398,8 @@ static av_cold int siren_init(AVCodecContext *avctx)
     s->imdct_prev = s->imdct_buf[2];
     s->window     = s->imdct_buf[3];
 
-    avctx->channels       = 1;
-    avctx->channel_layout = AV_CH_LAYOUT_MONO;
+    av_channel_layout_uninit(&avctx->ch_layout);
+    avctx->ch_layout      = (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO;
     avctx->sample_fmt     = AV_SAMPLE_FMT_FLT;
 
     s->rate_control_possibilities = 16;
-- 
2.34.1



More information about the ffmpeg-devel mailing list