summaryrefslogtreecommitdiff
path: root/libavformat/mxg.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/mxg.c')
-rw-r--r--libavformat/mxg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mxg.c b/libavformat/mxg.c
index d0510d5fe5..09653ee7b7 100644
--- a/libavformat/mxg.c
+++ b/libavformat/mxg.c
@@ -47,14 +47,14 @@ static int mxg_read_header(AVFormatContext *s)
if (!video_st)
return AVERROR(ENOMEM);
video_st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
- video_st->codec->codec_id = CODEC_ID_MXPEG;
+ video_st->codec->codec_id = AV_CODEC_ID_MXPEG;
avpriv_set_pts_info(video_st, 64, 1, 1000000);
audio_st = avformat_new_stream(s, NULL);
if (!audio_st)
return AVERROR(ENOMEM);
audio_st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
- audio_st->codec->codec_id = CODEC_ID_PCM_ALAW;
+ audio_st->codec->codec_id = AV_CODEC_ID_PCM_ALAW;
audio_st->codec->channels = 1;
audio_st->codec->sample_rate = 8000;
audio_st->codec->bits_per_coded_sample = 8;