[FFmpeg-devel] [PATCH 048/281] dhav: convert to new channel layout API

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


From: Anton Khirnov <anton at khirnov.net>

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

diff --git a/libavformat/dhav.c b/libavformat/dhav.c
index 6c1cdde32c..935f805632 100644
--- a/libavformat/dhav.c
+++ b/libavformat/dhav.c
@@ -395,7 +395,8 @@ retry:
         default: avpriv_request_sample(s, "Unknown audio codec %X", dhav->audio_codec);
         }
         st->duration              = dhav->duration;
-        st->codecpar->channels    = dhav->audio_channels;
+        st->codecpar->ch_layout.order       = AV_CHANNEL_ORDER_UNSPEC;
+        st->codecpar->ch_layout.nb_channels = dhav->audio_channels;
         st->codecpar->sample_rate = dhav->sample_rate;
         st->priv_data = dst = av_mallocz(sizeof(DHAVStream));
         if (!st->priv_data)
-- 
2.34.1



More information about the ffmpeg-devel mailing list