diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-12-23 09:10:40 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-12-23 09:10:40 +0000 |
commit | c58791069665877047849aa554fea10070b5af23 (patch) | |
tree | ea5e158bf1a2fc83a1283f9143f6536a5d7b2030 | |
parent | 5590342322ce84941c03764d425d666b003bc4de (diff) | |
download | ffmpeg-streaming-c58791069665877047849aa554fea10070b5af23.zip ffmpeg-streaming-c58791069665877047849aa554fea10070b5af23.tar.gz |
There is no need to print FFmpeg or codec name in error message
Originally committed as revision 20913 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/cyuv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cyuv.c b/libavcodec/cyuv.c index d137dbd..a44fb17 100644 --- a/libavcodec/cyuv.c +++ b/libavcodec/cyuv.c @@ -87,7 +87,7 @@ static int cyuv_decode_frame(AVCodecContext *avctx, * of 4 pixels. Thus, the total size of the buffer ought to be: * (3 * 16) + height * (width * 3 / 4) */ if (buf_size != 48 + s->height * (s->width * 3 / 4)) { - av_log(avctx, AV_LOG_ERROR, "ffmpeg: cyuv: got a buffer with %d bytes when %d were expected\n", + av_log(avctx, AV_LOG_ERROR, "got a buffer with %d bytes when %d were expected\n", buf_size, 48 + s->height * (s->width * 3 / 4)); return -1; } |