Browse code

Change type of {audio,video,subtitle}_codec_tag variables from int to unsigned int, as the corresponding variable set in AVCodecContext.codec_tag is unsigned int.

Originally committed as revision 23441 to svn://svn.ffmpeg.org/ffmpeg/trunk

Stefano Sabatini authored on 2010/06/04 03:40:31
Showing 1 changed files
... ...
@@ -139,7 +139,7 @@ static const char *video_rc_override_string=NULL;
139 139
 static int video_disable = 0;
140 140
 static int video_discard = 0;
141 141
 static char *video_codec_name = NULL;
142
-static int video_codec_tag = 0;
142
+static unsigned int video_codec_tag = 0;
143 143
 static char *video_language = NULL;
144 144
 static int same_quality = 0;
145 145
 static int do_deinterlace = 0;
... ...
@@ -162,13 +162,13 @@ static float audio_qscale = QSCALE_NONE;
162 162
 static int audio_disable = 0;
163 163
 static int audio_channels = 1;
164 164
 static char  *audio_codec_name = NULL;
165
-static int audio_codec_tag = 0;
165
+static unsigned int audio_codec_tag = 0;
166 166
 static char *audio_language = NULL;
167 167
 
168 168
 static int subtitle_disable = 0;
169 169
 static char *subtitle_codec_name = NULL;
170 170
 static char *subtitle_language = NULL;
171
-static int subtitle_codec_tag = 0;
171
+static unsigned int subtitle_codec_tag = 0;
172 172
 
173 173
 static float mux_preload= 0.5;
174 174
 static float mux_max_delay= 0.7;