changeset 10705:126c0fef9167 libavcodec

There is no need to print FFmpeg or codec name in error message
author kostya
date Wed, 23 Dec 2009 09:10:40 +0000
parents 72ff59e42756
children 29d5a7712fb9
files cyuv.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/cyuv.c	Wed Dec 23 09:04:57 2009 +0000
+++ b/cyuv.c	Wed Dec 23 09:10:40 2009 +0000
@@ -87,7 +87,7 @@
      * 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;
     }