diff options
-rw-r--r-- | src/va.c | 20 | ||||
-rwxr-xr-x | src/va_backend.h | 11 |
2 files changed, 0 insertions, 31 deletions
@@ -215,7 +215,6 @@ static VAStatus va_openDriver(VADisplay dpy, char *driver_name) CHECK_VTABLE(vaStatus, ctx, CreateSubpicture); CHECK_VTABLE(vaStatus, ctx, DestroySubpicture); CHECK_VTABLE(vaStatus, ctx, SetSubpictureImage); - CHECK_VTABLE(vaStatus, ctx, SetSubpicturePalette); CHECK_VTABLE(vaStatus, ctx, SetSubpictureChromakey); CHECK_VTABLE(vaStatus, ctx, SetSubpictureGlobalAlpha); CHECK_VTABLE(vaStatus, ctx, AssociateSubpicture); @@ -1046,25 +1045,6 @@ VAStatus vaSetSubpictureImage ( return ctx->vtable.vaSetSubpictureImage ( ctx, subpicture, image); } -#warning TODO: Remove vaSetSubpicturePalette in rev 0.29 -VAStatus vaSetSubpicturePalette ( - VADisplay dpy, - VASubpictureID subpicture, - /* - * pointer to an array holding the palette data. The size of the array is - * num_palette_entries * entry_bytes in size. The order of the components - * in the palette is described by the component_order in VASubpicture struct - */ - unsigned char *palette -) -{ - VADriverContextP ctx; - CHECK_DISPLAY(dpy); - ctx = CTX(dpy); - - TRACE(vaSetSubpicturePalette); - return ctx->vtable.vaSetSubpicturePalette ( ctx, subpicture, palette); -} /* * If chromakey is enabled, then the area where the source value falls within diff --git a/src/va_backend.h b/src/va_backend.h index 5d0785c..c411201 100755 --- a/src/va_backend.h +++ b/src/va_backend.h @@ -303,17 +303,6 @@ struct VADriverVTable VAImageID image ); - VAStatus (*vaSetSubpicturePalette) ( - VADriverContextP ctx, - VASubpictureID subpicture, - /* - * pointer to an array holding the palette data. The size of the array is - * num_palette_entries * entry_bytes in size. The order of the components - * in the palette is described by the component_order in VASubpicture struct - */ - unsigned char *palette - ); - VAStatus (*vaSetSubpictureChromakey) ( VADriverContextP ctx, VASubpictureID subpicture, |