1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

get rid of MAX_STREAMS limit in nutdec

Originally committed as revision 24755 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Aurelien Jacobs 2010-08-10 16:36:36 +00:00
parent f53b9a2964
commit 3c0eec06d8

View File

@ -29,6 +29,12 @@
#undef NDEBUG #undef NDEBUG
#include <assert.h> #include <assert.h>
#if LIBAVFORMAT_VERSION_MAJOR < 53
#define NUT_MAX_STREAMS MAX_STREAMS
#else
#define NUT_MAX_STREAMS 256 /* arbitrary sanity check value */
#endif
static int get_str(ByteIOContext *bc, char *string, unsigned int maxlen){ static int get_str(ByteIOContext *bc, char *string, unsigned int maxlen){
unsigned int len= ff_get_v(bc); unsigned int len= ff_get_v(bc);
@ -193,7 +199,7 @@ static int decode_main_header(NUTContext *nut){
end += url_ftell(bc); end += url_ftell(bc);
GET_V(tmp , tmp >=2 && tmp <= 3) GET_V(tmp , tmp >=2 && tmp <= 3)
GET_V(stream_count , tmp > 0 && tmp <=MAX_STREAMS) GET_V(stream_count , tmp > 0 && tmp <= NUT_MAX_STREAMS)
nut->max_distance = ff_get_v(bc); nut->max_distance = ff_get_v(bc);
if(nut->max_distance > 65536){ if(nut->max_distance > 65536){