Commit 4a6c439f authored by kostya's avatar kostya

Update error message

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7010 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9ab3a116
......@@ -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){
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment