# HG changeset patch # User kostya # Date 1261559440 0 # Node ID 126c0fef91677ef8770e2ec2d5032a5856efd150 # Parent 72ff59e4275637cf539343fed70a9e99854830b9 There is no need to print FFmpeg or codec name in error message diff -r 72ff59e42756 -r 126c0fef9167 cyuv.c --- 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; }