summaryrefslogtreecommitdiff
path: root/libavformat/bfi.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/bfi.c')
-rw-r--r--libavformat/bfi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/bfi.c b/libavformat/bfi.c
index cecbfbabd0..f9e427ccd1 100644
--- a/libavformat/bfi.c
+++ b/libavformat/bfi.c
@@ -87,12 +87,12 @@ static int bfi_read_header(AVFormatContext * s, AVFormatParameters * ap)
/* Set up the video codec... */
av_set_pts_info(vstream, 32, 1, fps);
- vstream->codec->codec_type = CODEC_TYPE_VIDEO;
+ vstream->codec->codec_type = AVMEDIA_TYPE_VIDEO;
vstream->codec->codec_id = CODEC_ID_BFI;
vstream->codec->pix_fmt = PIX_FMT_PAL8;
/* Set up the audio codec now... */
- astream->codec->codec_type = CODEC_TYPE_AUDIO;
+ astream->codec->codec_type = AVMEDIA_TYPE_AUDIO;
astream->codec->codec_id = CODEC_ID_PCM_U8;
astream->codec->channels = 1;
astream->codec->bits_per_coded_sample = 8;