diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-05-23 13:08:44 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-05-23 13:08:44 +0000 |
commit | fbabf1e94405ba81eaa5f2a1f840920f47caed0c (patch) | |
tree | a737b60ea4dd8e76d2d69a76e70844c7338e2e9c /libavformat | |
parent | 7c8202cc923386a3684a860385af77803965bdd6 (diff) | |
download | ffmpeg-fbabf1e94405ba81eaa5f2a1f840920f47caed0c.tar.gz |
nb_chapters should be unsigned
Originally committed as revision 13261 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/avformat.h | 2 |
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; |