[FFmpeg-devel] [PATCH 049/281] dtshddec: convert to new channel layout API

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


From: Anton Khirnov <anton at khirnov.net>

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

diff --git a/libavformat/dtshddec.c b/libavformat/dtshddec.c
index b84588af7c..a3b3b92055 100644
--- a/libavformat/dtshddec.c
+++ b/libavformat/dtshddec.c
@@ -104,7 +104,8 @@ static int dtshd_read_header(AVFormatContext *s)
             duration *= avio_rb16(pb); // samples_per_frames
             st->duration = duration;
             avio_skip(pb, 5);
-            st->codecpar->channels = ff_dca_count_chs_for_mask(avio_rb16(pb));
+            st->codecpar->ch_layout.order       = AV_CHANNEL_ORDER_UNSPEC;
+            st->codecpar->ch_layout.nb_channels = ff_dca_count_chs_for_mask(avio_rb16(pb));
             st->codecpar->initial_padding = avio_rb16(pb);
             avio_skip(pb, chunk_size - 21);
             break;
-- 
2.34.1



More information about the ffmpeg-devel mailing list