[FFmpeg-cvslog] lavc/roqvideodec: fix error message

Stefano Sabatini git at videolan.org
Mon Sep 24 12:06:41 CEST 2012


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Sun Sep  9 11:12:14 2012 +0200| [efa3d5af1e11711ec8aadba34d9eb509e46db35a] | committer: Stefano Sabatini

lavc/roqvideodec: fix error message

Remove redundant reference to codec name, it is already mentioned in the
log header.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=efa3d5af1e11711ec8aadba34d9eb509e46db35a
---

 libavcodec/roqvideodec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
     }
 



More information about the ffmpeg-cvslog mailing list