diff swf.h @ 5290:0d5653941bf9 libavformat

Make AVCodecTag.id enum CodecID and use CODEC_ID_NONE instead of 0.
author cehoyos
date Fri, 16 Oct 2009 14:46:06 +0000
parents 6e9e1f5426a5
children
line wrap: on
line diff
--- a/swf.h	Fri Oct 16 10:04:35 2009 +0000
+++ b/swf.h	Fri Oct 16 14:46:06 2009 +0000
@@ -81,7 +81,7 @@
 static const AVCodecTag swf_codec_tags[] = {
     {CODEC_ID_FLV1, 0x02},
     {CODEC_ID_VP6F, 0x04},
-    {0, 0},
+    {CODEC_ID_NONE,    0},
 };
 
 static const AVCodecTag swf_audio_codec_tags[] = {
@@ -90,7 +90,7 @@
     {CODEC_ID_MP3,        0x02},
     {CODEC_ID_PCM_S16LE,  0x03},
   //{CODEC_ID_NELLYMOSER, 0x06},
-    {0, 0},
+    {CODEC_ID_NONE,          0},
 };
 
 #endif /* AVFORMAT_SWF_H */