cosmetics: correct formatting a bit

Originally committed as revision 20912 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Kostya Shishkov 15 years ago
parent 1a91f1a0da
commit 5590342322
  1. 3
      libavcodec/cyuv.c

@ -88,8 +88,7 @@ static int cyuv_decode_frame(AVCodecContext *avctx,
* (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",
buf_size,
48 + s->height * (s->width * 3 / 4));
buf_size, 48 + s->height * (s->width * 3 / 4));
return -1;
}

Loading…
Cancel
Save