From fbabf1e94405ba81eaa5f2a1f840920f47caed0c Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 23 May 2008 13:08:44 +0000 Subject: [PATCH] nb_chapters should be unsigned Originally committed as revision 13261 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/avformat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 8774b73..4888105 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -522,7 +522,7 @@ typedef struct AVFormatContext { */ unsigned int max_picture_buffer; - int nb_chapters; + unsigned int nb_chapters; AVChapter **chapters; } AVFormatContext; -- 2.7.4