Fix frame height/width for YUV400/YUV444/YUV422V_2Y JPEG image
authorXiang, Haihao <haihao.xiang@intel.com>
Thu, 19 Jan 2012 01:01:59 +0000 (09:01 +0800)
committerXiang, Haihao <haihao.xiang@intel.com>
Tue, 7 Feb 2012 01:21:35 +0000 (09:21 +0800)
Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
src/gen7_mfd.c

index 509eacc..e4eaa7e 100644 (file)
@@ -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);