[FFmpeg-devel] [PATCH 140/281] sds: convert to new channel layout API
James Almer
jamrial at gmail.com
Thu Jan 13 03:57:57 EET 2022
From: Anton Khirnov <anton at khirnov.net>
Signed-off-by: James Almer <jamrial at gmail.com>
---
libavformat/sdsdec.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavformat/sdsdec.c b/libavformat/sdsdec.c
index 073dadafbb..3b7f95421f 100644
--- a/libavformat/sdsdec.c
+++ b/libavformat/sdsdec.c
@@ -110,7 +110,8 @@ static int sds_read_header(AVFormatContext *ctx)
avio_skip(pb, 11);
st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
- st->codecpar->channels = 1;
+ st->codecpar->ch_layout.order = AV_CHANNEL_ORDER_UNSPEC;
+ st->codecpar->ch_layout.nb_channels = 1;
st->codecpar->sample_rate = sample_period ? 1000000000 / sample_period : 16000;
st->duration = (avio_size(pb) - 21) / (127) * s->size / 4;
--
2.34.1
More information about the ffmpeg-devel
mailing list