]> git.sesse.net Git - ffmpeg/commitdiff
There is no need to print FFmpeg or codec name in error message
authorKostya Shishkov <kostya.shishkov@gmail.com>
Wed, 23 Dec 2009 09:10:40 +0000 (09:10 +0000)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Wed, 23 Dec 2009 09:10:40 +0000 (09:10 +0000)
Originally committed as revision 20913 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/cyuv.c

index d137dbd1680983efe3bbafd5817fc2cdd9da3c13..a44fb17a3601652c75a277d473cd0e7ab0b86016 100644 (file)
@@ -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;
     }