[FFmpeg-devel] [PATCH 072/281] hca: convert to new channel layout API

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


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

diff --git a/libavformat/hca.c b/libavformat/hca.c
index eaa96a9b17..3c9e549e38 100644
--- a/libavformat/hca.c
+++ b/libavformat/hca.c
@@ -79,7 +79,8 @@ static int hca_read_header(AVFormatContext *s)
     par->codec_type  = AVMEDIA_TYPE_AUDIO;
     par->codec_id    = AV_CODEC_ID_HCA;
     par->codec_tag   = 0;
-    par->channels    = bytestream2_get_byte(&gb);
+    st->codecpar->ch_layout.order       = AV_CHANNEL_ORDER_UNSPEC;
+    st->codecpar->ch_layout.nb_channels = bytestream2_get_byte(&gb);
     par->sample_rate = bytestream2_get_be24(&gb);
     block_count      = bytestream2_get_be32(&gb);
     bytestream2_skip(&gb, 4);
-- 
2.34.1



More information about the ffmpeg-devel mailing list