]> git.sesse.net Git - ffmpeg/commitdiff
flashsv: fix typo in av_log() message
authorDiego Biurrun <diego@biurrun.de>
Wed, 28 Sep 2011 12:47:31 +0000 (14:47 +0200)
committerDiego Biurrun <diego@biurrun.de>
Tue, 11 Oct 2011 12:28:23 +0000 (14:28 +0200)
libavcodec/flashsv.c

index 57d33c06da1882118f73103e2bafdb48b0885593..b1424a5586eeda5b8cf5ec0d3530dfc469816069 100644 (file)
@@ -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;