[FFmpeg-cvslog] flashsv: fix typo in av_log() message

Diego Biurrun git at videolan.org
Wed Oct 12 05:51:15 CEST 2011


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Wed Sep 28 14:47:31 2011 +0200| [f9a9c8f9bc88cd34d2393311055596e649e868fb] | committer: Diego Biurrun

flashsv: fix typo in av_log() message

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f9a9c8f9bc88cd34d2393311055596e649e868fb
---

 libavcodec/flashsv.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/flashsv.c b/libavcodec/flashsv.c
index 57d33c0..b1424a5 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;



More information about the ffmpeg-cvslog mailing list