From 6673b012811c4ee12c970b263d805b3c75e24c88 Mon Sep 17 00:00:00 2001 From: "Xiang, Haihao" Date: Thu, 19 Jan 2012 09:01:59 +0800 Subject: [PATCH] Fix frame height/width for YUV400/YUV444/YUV422V_2Y JPEG image Signed-off-by: Xiang, Haihao --- src/gen7_mfd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.7.4