From: Anton Khirnov <[email protected]>
Signed-off-by: James Almer <[email protected]>
---
libavformat/aptxdec.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavformat/aptxdec.c b/libavformat/aptxdec.c
index 7153e262a1..ff1aa32bd8 100644
--- a/libavformat/aptxdec.c
+++ b/libavformat/aptxdec.c
@@ -42,7 +42,8 @@ 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.order = AV_CHANNEL_ORDER_UNSPEC;
+ st->codecpar->ch_layout.nb_channels = 2;
st->codecpar->sample_rate = s1->sample_rate;
st->start_time = 0;
return st;
--
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".