Make nb_streams unsigned to avoid an ugly cast.
authorDiego Biurrun <diego@biurrun.de>
Tue, 16 Jan 2007 22:31:10 +0000 (22:31 +0000)
committerDiego Biurrun <diego@biurrun.de>
Tue, 16 Jan 2007 22:31:10 +0000 (22:31 +0000)
Originally committed as revision 7556 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/avformat.h
libavformat/avidec.c

index 6057e34..2c90e21 100644 (file)
@@ -298,7 +298,7 @@ typedef struct AVFormatContext {
     struct AVOutputFormat *oformat;
     void *priv_data;
     ByteIOContext pb;
-    int nb_streams;
+    unsigned int nb_streams;
     AVStream *streams[MAX_STREAMS];
     char filename[1024]; /* input or output filename */
     /* stream info */
index 6d5a0c9..276689d 100644 (file)
@@ -397,7 +397,7 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
             break;
         case MKTAG('s', 't', 'r', 'f'):
             /* stream header */
-            if (stream_index >= (unsigned)s->nb_streams || avi->dv_demux) {
+            if (stream_index >= s->nb_streams || avi->dv_demux) {
                 url_fskip(pb, size);
             } else {
                 st = s->streams[stream_index];