[FFmpeg-devel] [PATCH 036/281] bfi: convert to new channel layout API
James Almer
jamrial at gmail.com
Thu Jan 13 03:49:58 EET 2022
From: Vittorio Giovara <vittorio.giovara at gmail.com>
Signed-off-by: Vittorio Giovara <vittorio.giovara at gmail.com>
Signed-off-by: James Almer <jamrial at gmail.com>
---
libavformat/bfi.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/libavformat/bfi.c b/libavformat/bfi.c
index 69000118fa..a42b78b8c0 100644
--- a/libavformat/bfi.c
+++ b/libavformat/bfi.c
@@ -106,8 +106,7 @@ static int bfi_read_header(AVFormatContext * s)
/* Set up the audio codec now... */
astream->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
astream->codecpar->codec_id = AV_CODEC_ID_PCM_U8;
- astream->codecpar->channels = 1;
- astream->codecpar->channel_layout = AV_CH_LAYOUT_MONO;
+ astream->codecpar->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO;
astream->codecpar->bits_per_coded_sample = 8;
astream->codecpar->bit_rate =
(int64_t)astream->codecpar->sample_rate * astream->codecpar->bits_per_coded_sample;
--
2.34.1
More information about the ffmpeg-devel
mailing list