nb_chapters should be unsigned
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 23 May 2008 13:08:44 +0000 (13:08 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 23 May 2008 13:08:44 +0000 (13:08 +0000)
Originally committed as revision 13261 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/avformat.h

index 8774b73..4888105 100644 (file)
@@ -522,7 +522,7 @@ typedef struct AVFormatContext {
      */
     unsigned int max_picture_buffer;
 
-    int nb_chapters;
+    unsigned int nb_chapters;
     AVChapter **chapters;
 } AVFormatContext;