X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Fmxg.c;h=d911a33e7f92dbceb11e2146ea696a8fa9cf27a7;hb=2d9d4440519f22c092ac37ccd1a1a914564d00b5;hp=be7e6db1c450ecc20a54eeea892f31f2f3c845ba;hpb=2ce64413e2b7f60041ff3e929e58242004c7921d;p=ffmpeg diff --git a/libavformat/mxg.c b/libavformat/mxg.c index be7e6db1c45..d911a33e7f9 100644 --- a/libavformat/mxg.c +++ b/libavformat/mxg.c @@ -19,6 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavutil/channel_layout.h" #include "libavutil/intreadwrite.h" #include "libavcodec/mjpeg.h" #include "avformat.h" @@ -56,6 +57,7 @@ static int mxg_read_header(AVFormatContext *s) audio_st->codec->codec_type = AVMEDIA_TYPE_AUDIO; audio_st->codec->codec_id = AV_CODEC_ID_PCM_ALAW; audio_st->codec->channels = 1; + audio_st->codec->channel_layout = AV_CH_LAYOUT_MONO; audio_st->codec->sample_rate = 8000; audio_st->codec->bits_per_coded_sample = 8; audio_st->codec->block_align = 1;