[FFmpeg-devel] [PATCH 066/281] g726: convert to new channel layout API

James Almer jamrial at gmail.com
Thu Jan 13 03:50:28 EET 2022


From: Anton Khirnov <anton at khirnov.net>

Signed-off-by: James Almer <jamrial at gmail.com>
---
 libavformat/g726.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavformat/g726.c b/libavformat/g726.c
index 4b08d0a9f7..ce88fe6b23 100644
--- a/libavformat/g726.c
+++ b/libavformat/g726.c
@@ -42,7 +42,8 @@ static int g726_read_header(AVFormatContext *s)
     st->codecpar->sample_rate           = c->sample_rate;
     st->codecpar->bits_per_coded_sample = c->code_size;
     st->codecpar->bit_rate              = ((int[]){ 16000, 24000, 32000, 40000 })[c->code_size - 2];
-    st->codecpar->channels              = 1;
+    st->codecpar->ch_layout.order       = AV_CHANNEL_ORDER_UNSPEC;
+    st->codecpar->ch_layout.nb_channels = 1;
 
     return 0;
 }
-- 
2.34.1



More information about the ffmpeg-devel mailing list