From: Anton Khirnov <[email protected]>
Signed-off-by: James Almer <[email protected]>
---
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
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".