Commit eb5d0f18 authored by Pavel Skakov's avatar Pavel Skakov Committed by Carl Eugen Hoyos

lavc/tiff: correct the default value of YCbCrSubsampling to 2x2

parent 5f138598
......@@ -2065,7 +2065,7 @@ static av_cold int tiff_init(AVCodecContext *avctx)
s->width = 0;
s->height = 0;
s->subsampling[0] =
s->subsampling[1] = 1;
s->subsampling[1] = 2;
s->avctx = avctx;
ff_lzw_decode_open(&s->lzw);
if (!s->lzw)
......
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