From: Xiang, Haihao Date: Thu, 19 Jan 2012 01:01:59 +0000 (+0800) Subject: Fix frame height/width for YUV400/YUV444/YUV422V_2Y JPEG image X-Git-Tag: 1.0_branch~140^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6673b012811c4ee12c970b263d805b3c75e24c88;p=profile%2Fivi%2Fvaapi-intel-driver.git Fix frame height/width for YUV400/YUV444/YUV422V_2Y JPEG image Signed-off-by: Xiang, Haihao --- diff --git a/src/gen7_mfd.c b/src/gen7_mfd.c index 509eacc..e4eaa7e 100644 --- a/src/gen7_mfd.c +++ b/src/gen7_mfd.c @@ -2059,8 +2059,8 @@ gen7_mfd_jpeg_pic_state(VADriverContextP ctx, assert(0); } - if (chroma_type == GEN7_YUV400 && - chroma_type == GEN7_YUV444 && + if (chroma_type == GEN7_YUV400 || + chroma_type == GEN7_YUV444 || chroma_type == GEN7_YUV422V_2Y) { frame_width_in_blks = ((pic_param->image_width + 7) / 8); frame_height_in_blks = ((pic_param->image_height + 7) / 8);