From: Vittorio Giovara <[email protected]>

Signed-off-by: Vittorio Giovara <[email protected]>
Signed-off-by: James Almer <[email protected]>
---
 libavformat/mxg.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libavformat/mxg.c b/libavformat/mxg.c
index d5c1d666fc..b160ccb9f9 100644
--- a/libavformat/mxg.c
+++ b/libavformat/mxg.c
@@ -57,8 +57,7 @@ static int mxg_read_header(AVFormatContext *s)
         return AVERROR(ENOMEM);
     audio_st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
     audio_st->codecpar->codec_id = AV_CODEC_ID_PCM_ALAW;
-    audio_st->codecpar->channels = 1;
-    audio_st->codecpar->channel_layout = AV_CH_LAYOUT_MONO;
+    audio_st->codecpar->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO;
     audio_st->codecpar->sample_rate = 8000;
     audio_st->codecpar->bits_per_coded_sample = 8;
     audio_st->codecpar->block_align = 1;
-- 
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".

Reply via email to