[FFmpeg-devel] [PATCH 095/281] moflex: convert to new channel layout API

James Almer jamrial at gmail.com
Thu Jan 13 03:55:48 EET 2022


Signed-off-by: James Almer <jamrial at gmail.com>
---
 libavformat/moflex.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavformat/moflex.c b/libavformat/moflex.c
index 1d342417f7..0b628add6c 100644
--- a/libavformat/moflex.c
+++ b/libavformat/moflex.c
@@ -233,7 +233,8 @@ static int moflex_read_sync(AVFormatContext *s)
             st->codecpar->width      = width;
             st->codecpar->height     = height;
             st->codecpar->sample_rate= sample_rate;
-            st->codecpar->channels   = channels;
+            st->codecpar->ch_layout.order = AV_CHANNEL_ORDER_UNSPEC;
+            st->codecpar->ch_layout.nb_channels = channels;
             st->priv_data            = av_packet_alloc();
             if (!st->priv_data)
                 return AVERROR(ENOMEM);
-- 
2.34.1



More information about the ffmpeg-devel mailing list