# HG changeset patch # User kostya # Date 1163417782 0 # Node ID c9867abab7e6708757c481069a8452349cf1c259 # Parent 405f8395eedc0624584f6fc28a9e6379f39a8413 Update error message diff -r 405f8395eedc -r c9867abab7e6 tiff.c --- a/tiff.c Mon Nov 13 11:34:46 2006 +0000 +++ b/tiff.c Mon Nov 13 11:36:22 2006 +0000 @@ -255,7 +255,7 @@ s->avctx->pix_fmt = PIX_FMT_RGB24; break; default: - av_log(s->avctx, AV_LOG_ERROR, "Only RGB24 is supported (this bpp=%i)\n", s->bpp); + av_log(s->avctx, AV_LOG_ERROR, "This format is not supported (bpp=%i)\n", s->bpp); return -1; } if(s->width != s->avctx->width || s->height != s->avctx->height){