VME uses reference frame parsed from slice_param instead of hacked DPB for Gen8
authorZhao Yakui <yakui.zhao@intel.com>
Fri, 21 Jun 2013 05:29:15 +0000 (13:29 +0800)
committerXiang, Haihao <haihao.xiang@intel.com>
Thu, 27 Feb 2014 02:22:18 +0000 (10:22 +0800)
This is backported from Ivy/Haswell/Sandybridge.

Signed-off-by: Zhao Yakui <yakui.zhao@intel.com>
src/gen8_vme.c

index 65d27c1..4a631ca 100644 (file)
@@ -240,6 +240,7 @@ gen8_vme_surface_setup(VADriverContextP ctx,
                         struct intel_encoder_context *encoder_context)
 {
     struct object_surface *obj_surface;
+    struct i965_driver_data *i965 = i965_driver_data(ctx);
 
     /*Setup surfaces state*/
     /* current picture for encoding */
@@ -249,17 +250,45 @@ gen8_vme_surface_setup(VADriverContextP ctx,
     gen8_vme_media_chroma_source_surface_state(ctx, 6, obj_surface, encoder_context);
 
     if (!is_intra) {
-        /* reference 0 */
-        obj_surface = encode_state->reference_objects[0];
-
-        if (obj_surface && obj_surface->bo)
-            gen8_vme_source_surface_state(ctx, 1, obj_surface, encoder_context);
-
-        /* reference 1 */
-        obj_surface = encode_state->reference_objects[1];
+       VAEncSliceParameterBufferH264 *slice_param = (VAEncSliceParameterBufferH264 *)encode_state->slice_params_ext[0]->buffer;
+       int slice_type;
+       struct object_surface *slice_obj_surface;
+       int ref_surface_id;
+
+       slice_type = intel_avc_enc_slice_type_fixup(slice_param->slice_type);
+
+       if (slice_type == SLICE_TYPE_P || slice_type == SLICE_TYPE_B) {
+               slice_obj_surface = NULL;
+               ref_surface_id = slice_param->RefPicList0[0].picture_id;
+               if (ref_surface_id != 0 && ref_surface_id != VA_INVALID_SURFACE) {
+                       slice_obj_surface = SURFACE(ref_surface_id);
+               }
+               if (slice_obj_surface && slice_obj_surface->bo) {
+                       obj_surface = slice_obj_surface;
+               } else {
+                       obj_surface = encode_state->reference_objects[0];
+               }
+               /* reference 0 */
+               if (obj_surface && obj_surface->bo)
+                       gen8_vme_source_surface_state(ctx, 1, obj_surface, encoder_context);
+       }
+       if (slice_type == SLICE_TYPE_B) {
+               /* reference 1 */
+               slice_obj_surface = NULL;
+               ref_surface_id = slice_param->RefPicList1[0].picture_id;
+               if (ref_surface_id != 0 && ref_surface_id != VA_INVALID_SURFACE) {
+                       slice_obj_surface = SURFACE(ref_surface_id);
+               }
+               if (slice_obj_surface && slice_obj_surface->bo) {
+                       obj_surface = slice_obj_surface;
+               } else {
+                       obj_surface = encode_state->reference_objects[0];
+               }
 
-        if (obj_surface && obj_surface->bo)
-            gen8_vme_source_surface_state(ctx, 2, obj_surface, encoder_context);
+               obj_surface = encode_state->reference_objects[1];
+               if (obj_surface && obj_surface->bo)
+                       gen8_vme_source_surface_state(ctx, 2, obj_surface, encoder_context);
+       }
     }
 
     /* VME output */