[FFmpeg-cvslog] lavf/oggdec: reword stream creation error message.
Clément Bœsch
git at videolan.org
Sun Sep 16 18:34:21 CEST 2012
ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Sat Sep 15 02:59:23 2012 +0200| [094991eb69011b647bd3ec0c50c4c7ed14b2a1bf] | committer: Clément Bœsch
lavf/oggdec: reword stream creation error message.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=094991eb69011b647bd3ec0c50c4c7ed14b2a1bf
---
libavformat/oggdec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/oggdec.c b/libavformat/oggdec.c
index e3f54bf..02d64d4 100644
--- a/libavformat/oggdec.c
+++ b/libavformat/oggdec.c
@@ -303,7 +303,7 @@ static int ogg_read_page(AVFormatContext *s, int *sid)
idx = ogg_new_stream(s, serial);
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;
}
}
More information about the ffmpeg-cvslog
mailing list