diff options
author | Roberto Togni <r_togni@tiscali.it> | 2005-01-15 14:05:37 +0000 |
---|---|---|
committer | Roberto Togni <r_togni@tiscali.it> | 2005-01-15 14:05:37 +0000 |
commit | f9c6d80e4e7b0e0f55a37223e32994a482960fb7 (patch) | |
tree | 6e5d8e52a92fa5719ea62823ad9386cca2619c63 | |
parent | 47d918252119be12899d9502535a834458fc793d (diff) | |
download | ffmpeg-f9c6d80e4e7b0e0f55a37223e32994a482960fb7.tar.gz |
1l, forgot to remove duplicated error message
Originally committed as revision 3838 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/8bps.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/8bps.c b/libavcodec/8bps.c index 5123532d2d..48773a1744 100644 --- a/libavcodec/8bps.c +++ b/libavcodec/8bps.c @@ -161,7 +161,6 @@ static int decode_init(AVCodecContext *avctx) c->pic.data[0] = NULL; if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) { - av_log(avctx, AV_LOG_ERROR, "Bad image size (w = %d, h = %d).\n", avctx->width, avctx->height); return 1; } |