Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-09-09 13:12:14 +0400
committerStefano Sabatini <stefasab@gmail.com>2012-09-24 14:02:38 +0400
commitefa3d5af1e11711ec8aadba34d9eb509e46db35a (patch)
treea3fcd1b4062081d41211bab0d37b9241f0e1677c /libavcodec/roqvideodec.c
parentb1fee1be61ab86b43b1bc4391a351d601b2ba851 (diff)
lavc/roqvideodec: fix error message
Remove redundant reference to codec name, it is already mentioned in the log header.
Diffstat (limited to 'libavcodec/roqvideodec.c')
-rw-r--r--libavcodec/roqvideodec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/roqvideodec.c b/libavcodec/roqvideodec.c
index cd4eb2aae7..b4cf454e9a 100644
--- a/libavcodec/roqvideodec.c
+++ b/libavcodec/roqvideodec.c
@@ -192,7 +192,7 @@ static int roq_decode_frame(AVCodecContext *avctx,
s->current_frame->reference = 3;
if ((ret = avctx->reget_buffer(avctx, s->current_frame)) < 0) {
- av_log(avctx, AV_LOG_ERROR, " RoQ: get_buffer() failed\n");
+ av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
return ret;
}