summaryrefslogtreecommitdiff
path: root/libavcodec/tiff.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2006-11-13 11:36:22 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2006-11-13 11:36:22 +0000
commitb39cf84ccaa2c9d243d957f57824ac6446f315e7 (patch)
tree56fd5a5994708acd94f5ad46665d05c6805c30a9 /libavcodec/tiff.c
parent339aabd5a8febca54117ffc11866d4240ba8d215 (diff)
Update error message
Originally committed as revision 7010 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/tiff.c')
-rw-r--r--libavcodec/tiff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c
index d0177fa62b..222337d605 100644
--- a/libavcodec/tiff.c
+++ b/libavcodec/tiff.c
@@ -255,7 +255,7 @@ static int tiff_decode_tag(TiffContext *s, uint8_t *start, uint8_t *buf, uint8_t
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){