From: Vittorio Giovara <[email protected]>
Signed-off-by: Vittorio Giovara <[email protected]>
Signed-off-by: James Almer <[email protected]>
---
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
_______________________________________________
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".