diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-09-15 02:59:23 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-09-16 18:28:52 +0200 |
commit | 094991eb69011b647bd3ec0c50c4c7ed14b2a1bf (patch) | |
tree | 409d2468ab37e78626a4df9311da2d0bcdb0a3e6 | |
parent | 23f6420026e130f1eb8d118f1b7bb7e7ddb67bce (diff) | |
download | ffmpeg-094991eb69011b647bd3ec0c50c4c7ed14b2a1bf.tar.gz |
lavf/oggdec: reword stream creation error message.
-rw-r--r-- | libavformat/oggdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggdec.c b/libavformat/oggdec.c index e3f54bf35b..02d64d4995 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; } } |