st/va: add handles for VP9 buffers
authorLeo Liu <leo.liu@amd.com>
Wed, 14 Mar 2018 19:55:00 +0000 (15:55 -0400)
committerLeo Liu <leo.liu@amd.com>
Thu, 12 Apr 2018 15:15:13 +0000 (11:15 -0400)
Signed-off-by: Leo Liu <leo.liu@amd.com>
Acked-by: Christian König <christian.koenig@amd.com>
src/gallium/state_trackers/va/Makefile.sources
src/gallium/state_trackers/va/meson.build
src/gallium/state_trackers/va/picture.c
src/gallium/state_trackers/va/picture_vp9.c [new file with mode: 0644]
src/gallium/state_trackers/va/va_private.h

index f3a13f208171e116ab5e868790f5003c014cfaf7..bd43100a87096b1bcda00627736a9b8662293cbb 100644 (file)
@@ -13,6 +13,7 @@ C_SOURCES := \
        picture_hevc_enc.c \
        picture_vc1.c \
        picture_mjpeg.c \
+       picture_vp9.c \
        postproc.c \
        subpicture.c \
        surface.c \
index deb1127483ec7918d234e11af1a771d14720f641..eb1491ce451d90ead3e80a97ef0aa03607d1b572 100644 (file)
@@ -25,8 +25,8 @@ libva_st = static_library(
   files(
     'buffer.c', 'config.c', 'context.c', 'display.c', 'image.c', 'picture.c',
     'picture_mpeg12.c', 'picture_mpeg4.c', 'picture_h264.c', 'picture_hevc.c',
-    'picture_vc1.c', 'picture_mjpeg.c', 'postproc.c', 'subpicture.c',
-    'surface.c', 'picture_h264_enc.c', 'picture_hevc_enc.c',
+    'picture_vc1.c', 'picture_mjpeg.c', 'picture_vp9.c','postproc.c',
+    'subpicture.c', 'surface.c', 'picture_h264_enc.c', 'picture_hevc_enc.c',
   ),
   c_args : [
     c_vis_args,
index f2e9ba8ef6ab146c2218b942ebc118748e62bd2d..e483ea3e217d46f3e2ea17c3ffc724c5b29b8aac 100644 (file)
@@ -134,6 +134,10 @@ handlePictureParameterBuffer(vlVaDriver *drv, vlVaContext *context, vlVaBuffer *
       vlVaHandlePictureParameterBufferMJPEG(drv, context, buf);
       break;
 
+  case PIPE_VIDEO_FORMAT_VP9:
+      vlVaHandlePictureParameterBufferVP9(drv, context, buf);
+      break;
+
    default:
       break;
    }
@@ -223,6 +227,10 @@ handleSliceParameterBuffer(vlVaContext *context, vlVaBuffer *buf)
       vlVaHandleSliceParameterBufferMJPEG(context, buf);
       break;
 
+   case PIPE_VIDEO_FORMAT_VP9:
+      vlVaHandleSliceParameterBufferVP9(context, buf);
+      break;
+
    default:
       break;
    }
@@ -294,6 +302,9 @@ handleVASliceDataBufferType(vlVaContext *context, vlVaBuffer *buf)
       break;
    case PIPE_VIDEO_FORMAT_JPEG:
       break;
+   case PIPE_VIDEO_FORMAT_VP9:
+      /* TODO */
+      break;
    default:
       break;
    }
diff --git a/src/gallium/state_trackers/va/picture_vp9.c b/src/gallium/state_trackers/va/picture_vp9.c
new file mode 100644 (file)
index 0000000..6235069
--- /dev/null
@@ -0,0 +1,38 @@
+/**************************************************************************
+ *
+ * Copyright 2018 Advanced Micro Devices, Inc.
+ * All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sub license, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial portions
+ * of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
+ * IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR
+ * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ *
+ **************************************************************************/
+
+#include "va_private.h"
+
+void vlVaHandlePictureParameterBufferVP9(vlVaDriver *drv, vlVaContext *context, vlVaBuffer *buf)
+{
+   /* TODO */
+}
+
+void vlVaHandleSliceParameterBufferVP9(vlVaContext *context, vlVaBuffer *buf)
+{
+   /* TODO */
+}
index 7c387478602aa9d63d84511ca09cca85f7eaa733..ef9142876c68c2ed0bae8c6e5bdda553365c9593 100644 (file)
@@ -429,6 +429,8 @@ void vlVaHandlePictureParameterBufferMJPEG(vlVaDriver *drv, vlVaContext *context
 void vlVaHandleIQMatrixBufferMJPEG(vlVaContext *context, vlVaBuffer *buf);
 void vlVaHandleHuffmanTableBufferType(vlVaContext *context, vlVaBuffer *buf);
 void vlVaHandleSliceParameterBufferMJPEG(vlVaContext *context, vlVaBuffer *buf);
+void vlVaHandlePictureParameterBufferVP9(vlVaDriver *drv, vlVaContext *context, vlVaBuffer *buf);
+void vlVaHandleSliceParameterBufferVP9(vlVaContext *context, vlVaBuffer *buf);
 void getEncParamPresetH264(vlVaContext *context);
 void getEncParamPresetH265(vlVaContext *context);
 VAStatus vlVaHandleVAEncPictureParameterBufferTypeH264(vlVaDriver *drv, vlVaContext *context, vlVaBuffer *buf);