diff vocenc.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 3d6e7901bf05
children c7b98381ec2d
line wrap: on
line diff
--- a/vocenc.c	Tue Mar 30 15:50:57 2010 +0000
+++ b/vocenc.c	Tue Mar 30 23:30:55 2010 +0000
@@ -33,7 +33,7 @@
     const int version = 0x0114;
 
     if (s->nb_streams != 1
-        || s->streams[0]->codec->codec_type != CODEC_TYPE_AUDIO)
+        || s->streams[0]->codec->codec_type != AVMEDIA_TYPE_AUDIO)
         return AVERROR_PATCHWELCOME;
 
     put_buffer(pb, ff_voc_magic, sizeof(ff_voc_magic) - 1);