[FFmpeg-cvslog] r20913 - trunk/libavcodec/cyuv.c

kostya subversion
Wed Dec 23 10:10:40 CET 2009


Author: kostya
Date: Wed Dec 23 10:10:40 2009
New Revision: 20913

Log:
There is no need to print FFmpeg or codec name in error message

Modified:
   trunk/libavcodec/cyuv.c

Modified: trunk/libavcodec/cyuv.c
==============================================================================
--- trunk/libavcodec/cyuv.c	Wed Dec 23 10:04:57 2009	(r20912)
+++ trunk/libavcodec/cyuv.c	Wed Dec 23 10:10:40 2009	(r20913)
@@ -87,7 +87,7 @@ static int cyuv_decode_frame(AVCodecCont
      * 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;
     }



More information about the ffmpeg-cvslog mailing list