oggdec: print error on failure to create streams

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-05-04 13:53:57 +02:00
parent 251ce23165
commit a6bb09fc1a
1 changed files with 3 additions and 1 deletions

View File

@ -271,8 +271,10 @@ static int ogg_read_page(AVFormatContext *s, int *str)
} else {
idx = ogg_new_stream(s, serial, 1);
}
if (idx < 0)
if (idx < 0) {
av_log (s, AV_LOG_ERROR, "failed to create stream (OOM?)\n");
return idx;
}
}
os = ogg->streams + idx;