[FFmpeg-devel] [PATCH 039/281] bmv: convert to new channel layout API

James Almer jamrial at gmail.com
Thu Jan 13 03:50:01 EET 2022


From: Vittorio Giovara <vittorio.giovara at gmail.com>

Signed-off-by: Vittorio Giovara <vittorio.giovara at gmail.com>
Signed-off-by: James Almer <jamrial at gmail.com>
---
 libavformat/bmv.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libavformat/bmv.c b/libavformat/bmv.c
index 873ecb027c..e1f667076e 100644
--- a/libavformat/bmv.c
+++ b/libavformat/bmv.c
@@ -58,8 +58,7 @@ static int bmv_read_header(AVFormatContext *s)
         return AVERROR(ENOMEM);
     ast->codecpar->codec_type      = AVMEDIA_TYPE_AUDIO;
     ast->codecpar->codec_id        = AV_CODEC_ID_BMV_AUDIO;
-    ast->codecpar->channels        = 2;
-    ast->codecpar->channel_layout  = AV_CH_LAYOUT_STEREO;
+    ast->codecpar->ch_layout       = (AVChannelLayout)AV_CHANNEL_LAYOUT_STEREO;
     ast->codecpar->sample_rate     = 22050;
     avpriv_set_pts_info(ast, 16, 1, 22050);
 
-- 
2.34.1



More information about the ffmpeg-devel mailing list