[FFmpeg-devel] [PATCH] lavc/roqvideodec: fix error message
Stefano Sabatini
stefasab at gmail.com
Mon Sep 24 11:42:50 CEST 2012
Remove redundant reference to codec name, it is already mentioned in the
log header.
---
libavcodec/roqvideodec.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/roqvideodec.c b/libavcodec/roqvideodec.c
index cd4eb2a..b4cf454 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;
}
--
1.7.5.4
More information about the ffmpeg-devel
mailing list