mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 09:35:22 +00:00
Update error message
Originally committed as revision 7010 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
339aabd5a8
commit
b39cf84cca
@ -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;
|
s->avctx->pix_fmt = PIX_FMT_RGB24;
|
||||||
break;
|
break;
|
||||||
default:
|
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;
|
return -1;
|
||||||
}
|
}
|
||||||
if(s->width != s->avctx->width || s->height != s->avctx->height){
|
if(s->width != s->avctx->width || s->height != s->avctx->height){
|
||||||
|
Loading…
Reference in New Issue
Block a user