diff mmf.c @ 5910:536e5527c1e0 libavformat

Define AVMediaType enum, and use it instead of enum CodecType, which is deprecated and will be dropped at the next major bump.
author stefano
date Tue, 30 Mar 2010 23:30:55 +0000
parents 33a244b7ca65
children 4aaed59641ff
line wrap: on
line diff
--- a/mmf.c	Tue Mar 30 15:50:57 2010 +0000
+++ b/mmf.c	Tue Mar 30 23:30:55 2010 +0000
@@ -244,7 +244,7 @@
     if (!st)
         return AVERROR(ENOMEM);
 
-    st->codec->codec_type = CODEC_TYPE_AUDIO;
+    st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
     st->codec->codec_id = CODEC_ID_ADPCM_YAMAHA;
     st->codec->sample_rate = rate;
     st->codec->channels = 1;