summaryrefslogtreecommitdiffstats
path: root/meta-emenlow/recipes-graphics/libva/libva-0.31.0/034_g45_fix_return_for_unimpl.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-emenlow/recipes-graphics/libva/libva-0.31.0/034_g45_fix_return_for_unimpl.patch')
-rw-r--r--meta-emenlow/recipes-graphics/libva/libva-0.31.0/034_g45_fix_return_for_unimpl.patch83
1 files changed, 0 insertions, 83 deletions
diff --git a/meta-emenlow/recipes-graphics/libva/libva-0.31.0/034_g45_fix_return_for_unimpl.patch b/meta-emenlow/recipes-graphics/libva/libva-0.31.0/034_g45_fix_return_for_unimpl.patch
deleted file mode 100644
index a4612133bb..0000000000
--- a/meta-emenlow/recipes-graphics/libva/libva-0.31.0/034_g45_fix_return_for_unimpl.patch
+++ /dev/null
@@ -1,83 +0,0 @@
-From 3935c6a836b8f90947f0af658a76b97a08a03c67 Mon Sep 17 00:00:00 2001
-From: Gwenole Beauchesne <gbeauchesne@splitted-desktop.com>
-Date: Wed, 4 Nov 2009 13:23:40 +0000
-Subject: [PATCH] [G45] Don't return VA_STATUS_SUCCESS for unimplemented functions.
-
----
- i965_drv_video/i965_drv_video.c | 18 +++++++++++-------
- 1 files changed, 11 insertions(+), 7 deletions(-)
-
-diff --git a/i965_drv_video/i965_drv_video.c b/i965_drv_video/i965_drv_video.c
-index 10baffb..d8a7bd1 100644
---- a/i965_drv_video/i965_drv_video.c
-+++ b/i965_drv_video/i965_drv_video.c
-@@ -534,7 +534,8 @@ i965_SetSubpictureImage(VADriverContextP ctx,
- VASubpictureID subpicture,
- VAImageID image)
- {
-- return VA_STATUS_SUCCESS;
-+ /* TODO */
-+ return VA_STATUS_ERROR_UNIMPLEMENTED;
- }
-
- VAStatus
-@@ -544,7 +545,8 @@ i965_SetSubpictureChromakey(VADriverContextP ctx,
- unsigned int chromakey_max,
- unsigned int chromakey_mask)
- {
-- return VA_STATUS_SUCCESS;
-+ /* TODO */
-+ return VA_STATUS_ERROR_UNIMPLEMENTED;
- }
-
- VAStatus
-@@ -552,7 +554,8 @@ i965_SetSubpictureGlobalAlpha(VADriverContextP ctx,
- VASubpictureID subpicture,
- float global_alpha)
- {
-- return VA_STATUS_SUCCESS;
-+ /* TODO */
-+ return VA_STATUS_ERROR_UNIMPLEMENTED;
- }
-
- VAStatus
-@@ -1141,7 +1144,7 @@ i965_GetDisplayAttributes(VADriverContextP ctx,
- int num_attributes)
- {
- /* TODO */
-- return VA_STATUS_ERROR_UNKNOWN;
-+ return VA_STATUS_ERROR_UNIMPLEMENTED;
- }
-
- /*
-@@ -1156,7 +1159,7 @@ i965_SetDisplayAttributes(VADriverContextP ctx,
- int num_attributes)
- {
- /* TODO */
-- return VA_STATUS_ERROR_UNKNOWN;
-+ return VA_STATUS_ERROR_UNIMPLEMENTED;
- }
-
- VAStatus
-@@ -1166,7 +1169,7 @@ i965_DbgCopySurfaceToBuffer(VADriverContextP ctx,
- unsigned int *stride) /* out */
- {
- /* TODO */
-- return VA_STATUS_ERROR_UNKNOWN;
-+ return VA_STATUS_ERROR_UNIMPLEMENTED;
- }
-
- static VAStatus
-@@ -1318,7 +1321,8 @@ VAStatus i965_DeriveImage(VADriverContextP ctx,
- VASurfaceID surface,
- VAImage *image) /* out */
- {
-- return VA_STATUS_SUCCESS;
-+ /* TODO */
-+ return VA_STATUS_ERROR_OPERATION_FAILED;
- }
-
- static void
---
-1.5.4.3
-