1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

lavf/oggdec: reword stream creation error message.

This commit is contained in:
Clément Bœsch
2012-09-15 02:59:23 +02:00
parent 23f6420026
commit 094991eb69

View File

@@ -303,7 +303,7 @@ static int ogg_read_page(AVFormatContext *s, int *sid)
idx = ogg_new_stream(s, serial); idx = ogg_new_stream(s, serial);
if (idx < 0) { if (idx < 0) {
av_log (s, AV_LOG_ERROR, "failed to create stream (OOM?)\n"); av_log(s, AV_LOG_ERROR, "failed to create or replace stream\n");
return idx; return idx;
} }
} }