diff mp3.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 74142991b333
children 13a03c6663b3
line wrap: on
line diff
--- a/mp3.c	Tue Mar 30 15:50:57 2010 +0000
+++ b/mp3.c	Tue Mar 30 23:30:55 2010 +0000
@@ -140,7 +140,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_MP3;
     st->need_parsing = AVSTREAM_PARSE_FULL;
     st->start_time = 0;