OSDN Git Service

st/va: enable P016 format i.e. reallocate buffer if format changed
authorLeo Liu <leo.liu@amd.com>
Mon, 21 Aug 2017 18:03:40 +0000 (14:03 -0400)
committerLeo Liu <leo.liu@amd.com>
Tue, 22 Aug 2017 19:13:42 +0000 (15:13 -0400)
Signed-off-by: Leo Liu <leo.liu@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
src/gallium/state_trackers/va/picture.c

index e0287d3..b2be7af 100644 (file)
@@ -593,6 +593,7 @@ vlVaEndPicture(VADriverContextP ctx, VAContextID context_id)
    struct pipe_screen *screen;
    bool interlaced;
    bool realloc = false;
+   enum pipe_format format;
 
    if (!ctx)
       return VA_STATUS_ERROR_INVALID_CONTEXT;
@@ -631,6 +632,17 @@ vlVaEndPicture(VADriverContextP ctx, VAContextID context_id)
       realloc = true;
    }
 
+   format = screen->get_video_param(screen, context->decoder->profile,
+                                    PIPE_VIDEO_ENTRYPOINT_BITSTREAM,
+                                    PIPE_VIDEO_CAP_PREFERED_FORMAT);
+
+   if (surf->buffer->buffer_format != format &&
+       surf->buffer->buffer_format == PIPE_FORMAT_NV12) {
+      /* check originally as NV12 only */
+      surf->templat.buffer_format = format;
+      realloc = true;
+   }
+
    if (u_reduce_video_profile(context->templat.profile) == PIPE_VIDEO_FORMAT_JPEG &&
        surf->buffer->buffer_format == PIPE_FORMAT_NV12) {
       if (context->mjpeg.sampling_factor == 0x211111 ||