summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-05-23 13:08:44 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-05-23 13:08:44 +0000
commitfbabf1e94405ba81eaa5f2a1f840920f47caed0c (patch)
treea737b60ea4dd8e76d2d69a76e70844c7338e2e9c /libavformat/avformat.h
parent7c8202cc923386a3684a860385af77803965bdd6 (diff)
nb_chapters should be unsigned
Originally committed as revision 13261 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 8774b7366a..4888105319 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;