aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-01-16 22:31:10 +0000
committerDiego Biurrun <diego@biurrun.de>2007-01-16 22:31:10 +0000
commitdb69c2e590be4ce47b4d85066b58f0a6bae8ef73 (patch)
tree3001698e67b2931b4afaaf34cd0bd58afa5e4dd5 /libavformat/avformat.h
parenta02142a50ac8fd2d5f137aee8ab060341919bc7b (diff)
downloadffmpeg-db69c2e590be4ce47b4d85066b58f0a6bae8ef73.tar.gz
Make nb_streams unsigned to avoid an ugly cast.
Originally committed as revision 7556 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 6057e34800..2c90e21ec9 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -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 */