diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-09-09 11:12:14 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-09-24 12:02:38 +0200 |
commit | efa3d5af1e11711ec8aadba34d9eb509e46db35a (patch) | |
tree | a3fcd1b4062081d41211bab0d37b9241f0e1677c /libavcodec | |
parent | b1fee1be61ab86b43b1bc4391a351d601b2ba851 (diff) | |
download | ffmpeg-efa3d5af1e11711ec8aadba34d9eb509e46db35a.tar.gz |
lavc/roqvideodec: fix error message
Remove redundant reference to codec name, it is already mentioned in the
log header.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/roqvideodec.c | 2 |
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; } |