diff --git a/libavformat/aptxdec.c b/libavformat/aptxdec.c index 7153e262a1..8ac22f1499 100644 --- a/libavformat/aptxdec.c +++ b/libavformat/aptxdec.c @@ -42,7 +42,7 @@ static AVStream *aptx_read_header_common(AVFormatContext *s) return NULL; st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO; st->codecpar->format = AV_SAMPLE_FMT_S32P; - st->codecpar->channels = 2; + st->codecpar->ch_layout.nb_channels = 2; st->codecpar->sample_rate = s1->sample_rate; st->start_time = 0; return st;