[Libva] [PATCH intel-driver] jpeg/dec: gen8+ set correct fourcc for monochrome decode

U. Artie Eoff ullysses.a.eoff at intel.com
Wed Sep 28 20:22:37 UTC 2016


When the jpeg picture params have 1 component the
fourcc needs to be set to VA_FOURCC_Y800.

Signed-off-by: U. Artie Eoff <ullysses.a.eoff at intel.com>
---
 src/gen8_mfd.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/gen8_mfd.c b/src/gen8_mfd.c
index 23eaca31a22a..98526644758b 100644
--- a/src/gen8_mfd.c
+++ b/src/gen8_mfd.c
@@ -1880,9 +1880,10 @@ gen8_mfd_jpeg_decode_init(VADriverContextP ctx,
 
     pic_param = (VAPictureParameterBufferJPEGBaseline *)decode_state->pic_param->buffer;
 
-    if (pic_param->num_components == 1)
+    if (pic_param->num_components == 1) {
         subsampling = SUBSAMPLE_YUV400;
-    else if (pic_param->num_components == 3) {
+        fourcc = VA_FOURCC_Y800;
+    } else if (pic_param->num_components == 3) {
         int h1 = pic_param->components[0].h_sampling_factor;
         int h2 = pic_param->components[1].h_sampling_factor;
         int h3 = pic_param->components[2].h_sampling_factor;
-- 
2.4.11



More information about the Libva mailing list