avcodec/tiff: support 4:2:2 and 4:1:1 YCbCr
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
217f6c53e5
commit
f694ca7ca7
@ -590,6 +590,10 @@ static int init_image(TiffContext *s, ThreadFrame *frame)
|
||||
if (s->photometric == TIFF_PHOTOMETRIC_YCBCR) {
|
||||
if (s->subsampling[0] == 1 && s->subsampling[1] == 1) {
|
||||
s->avctx->pix_fmt = AV_PIX_FMT_YUV444P;
|
||||
} else if (s->subsampling[0] == 2 && s->subsampling[1] == 1) {
|
||||
s->avctx->pix_fmt = AV_PIX_FMT_YUV422P;
|
||||
} else if (s->subsampling[0] == 4 && s->subsampling[1] == 1) {
|
||||
s->avctx->pix_fmt = AV_PIX_FMT_YUV411P;
|
||||
} else if (s->subsampling[0] == 2 && s->subsampling[1] == 2) {
|
||||
s->avctx->pix_fmt = AV_PIX_FMT_YUV420P;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user