summaryrefslogtreecommitdiff
path: root/libavcodec/flashsv.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-09-28 14:47:31 +0200
committerDiego Biurrun <diego@biurrun.de>2011-10-11 14:28:23 +0200
commitf9a9c8f9bc88cd34d2393311055596e649e868fb (patch)
tree6f32c2965a2acae5ec069d00c5da3093159dd5a4 /libavcodec/flashsv.c
parentff1f89de2da3472d133e2c95bf7c9ad2d88df33d (diff)
flashsv: fix typo in av_log() message
Diffstat (limited to 'libavcodec/flashsv.c')
-rw-r--r--libavcodec/flashsv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flashsv.c b/libavcodec/flashsv.c
index 57d33c06da..b1424a5586 100644
--- a/libavcodec/flashsv.c
+++ b/libavcodec/flashsv.c
@@ -300,7 +300,7 @@ static int flashsv_decode_frame(AVCodecContext *avctx, void *data,
/* check for changes of image width and image height */
if (avctx->width != s->image_width || avctx->height != s->image_height) {
av_log(avctx, AV_LOG_ERROR,
- "Frame width or height differs from first frames!\n");
+ "Frame width or height differs from first frame!\n");
av_log(avctx, AV_LOG_ERROR, "fh = %d, fv %d vs ch = %d, cv = %d\n",
avctx->height, avctx->width, s->image_height, s->image_width);
return AVERROR_INVALIDDATA;