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:
authorAnton Khirnov <anton@khirnov.net>2019-05-13 12:11:26 +0300
committerJames Almer <jamrial@gmail.com>2022-03-15 15:42:30 +0300
commit057f237ca4e74249aa894bee42a4dfb0d3b394f6 (patch)
tree88a1fa73ca377eabcca75eeeeb754492e731f4c4 /libavformat/aptxdec.c
parent64f27c10ee7355ec1d364caf51cc055bc465bf72 (diff)
aptxdec: convert to new channel layout API
Signed-off-by: James Almer <jamrial@gmail.com>
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;