Browse Source

Fix flashsv2 encoder error message.

tags/n0.11
Carl Eugen Hoyos 13 years ago
parent
commit
db11fc5392
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/flashsv2enc.c

+ 1
- 1
libavcodec/flashsv2enc.c View File

@@ -194,7 +194,7 @@ static av_cold int flashsv2_encode_init(AVCodecContext * avctx)
} }
if ((avctx->width < 16) || (avctx->height < 16)) { if ((avctx->width < 16) || (avctx->height < 16)) {
av_log(avctx, AV_LOG_ERROR, av_log(avctx, AV_LOG_ERROR,
"Input dimensions too small, input must be max 16x16 !\n");
"Input dimensions too small, input must be at least 16x16 !\n");
return -1; return -1;
} }




Loading…
Cancel
Save