Browse Source

Clean up error message

Originally committed as revision 14039 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Vitor Sessak 17 years ago
parent
commit
285ea3e30a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/ra288.c

+ 1
- 1
libavcodec/ra288.c View File

@@ -251,7 +251,7 @@ static int ra288_decode_frame(AVCodecContext * avctx, void *data,

if (buf_size < avctx->block_align) {
av_log(avctx, AV_LOG_ERROR,
"ffra288: Error! Input buffer is too small [%d<%d]\n",
"Error! Input buffer is too small [%d<%d]\n",
buf_size, avctx->block_align);
return 0;
}


Loading…
Cancel
Save