changeset 4191:c9867abab7e6 libavcodec

Update error message
author kostya
date Mon, 13 Nov 2006 11:36:22 +0000
parents 405f8395eedc
children 42e870000702
files tiff.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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){