oggdec: print error on failure to create streams

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/30/merge
Michael Niedermayer 13 years ago
parent 251ce23165
commit a6bb09fc1a
  1. 4
      libavformat/oggdec.c

@ -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;

Loading…
Cancel
Save