Print an error when MAX_STREAMS is reached.

Originally committed as revision 23413 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2010-06-01 19:49:21 +00:00
parent 2b991422f8
commit b742a12ee2
1 changed files with 3 additions and 1 deletions

View File

@ -2467,8 +2467,10 @@ AVStream *av_new_stream(AVFormatContext *s, int id)
AVStream *st;
int i;
if (s->nb_streams >= MAX_STREAMS)
if (s->nb_streams >= MAX_STREAMS){
av_log(s, AV_LOG_ERROR, "Too many streams\n");
return NULL;
}
st = av_mallocz(sizeof(AVStream));
if (!st)