From e968ae81f2dfd035436eabc79f21958824f2a290 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 13 May 2019 11:11:26 +0200 Subject: [PATCH] sds: convert to new channel layout API Signed-off-by: James Almer --- libavformat/sdsdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/sdsdec.c b/libavformat/sdsdec.c index 073dadafbb..f98096dca9 100644 --- a/libavformat/sdsdec.c +++ b/libavformat/sdsdec.c @@ -110,7 +110,7 @@ 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.nb_channels = 1; st->codecpar->sample_rate = sample_period ? 1000000000 / sample_period : 16000; st->duration = (avio_size(pb) - 21) / (127) * s->size / 4;