diff electronicarts.c @ 3291:fb5f48e1956f libavformat

Fix icc warning #188: enumerated type mixed with another type
author cehoyos
date Tue, 13 May 2008 15:51:37 +0000
parents 0b9d29522781
children 7a0230981402
line wrap: on
line diff
--- a/electronicarts.c	Tue May 13 15:42:27 2008 +0000
+++ b/electronicarts.c	Tue May 13 15:51:37 2008 +0000
@@ -49,11 +49,11 @@
 typedef struct EaDemuxContext {
     int big_endian;
 
-    int video_codec;
+    enum CodecID video_codec;
     AVRational time_base;
     int video_stream_index;
 
-    int audio_codec;
+    enum CodecID audio_codec;
     int audio_stream_index;
     int audio_frame_counter;