Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/aptxdec.c')
-rw-r--r--libavformat/aptxdec.c2
1 files changed, 1 insertions, 1 deletions
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;