forked from marfrit/libva-v4l2-request-fourier
tree: Rename the libva hooks
As part of our renaming effort, Rename the libva hooks names to mention request instead of SunxiCedrus Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com>
This commit is contained in:
+29
-33
@@ -44,38 +44,34 @@ struct object_config {
|
||||
int attributes_count;
|
||||
};
|
||||
|
||||
VAStatus SunxiCedrusCreateConfig(VADriverContextP context, VAProfile profile,
|
||||
VAEntrypoint entrypoint,
|
||||
VAConfigAttrib *attributes,
|
||||
int attributes_count, VAConfigID *config_id);
|
||||
VAStatus SunxiCedrusDestroyConfig(VADriverContextP context,
|
||||
VAConfigID config_id);
|
||||
VAStatus SunxiCedrusQueryConfigProfiles(VADriverContextP context,
|
||||
VAProfile *profiles,
|
||||
int *profiles_count);
|
||||
VAStatus SunxiCedrusQueryConfigEntrypoints(VADriverContextP context,
|
||||
VAProfile profile,
|
||||
VAEntrypoint *entrypoints,
|
||||
int *entrypoints_count);
|
||||
VAStatus SunxiCedrusQueryConfigAttributes(VADriverContextP context,
|
||||
VAConfigID config_id,
|
||||
VAProfile *profile,
|
||||
VAEntrypoint *entrypoint,
|
||||
VAConfigAttrib *attributes,
|
||||
int *attributes_count);
|
||||
VAStatus SunxiCedrusGetConfigAttributes(VADriverContextP context,
|
||||
VAProfile profile,
|
||||
VAEntrypoint entrypoint,
|
||||
VAConfigAttrib *attributes,
|
||||
int attributes_count);
|
||||
VAStatus SunxiCedrusQueryDisplayAttributes(VADriverContextP context,
|
||||
VADisplayAttribute *attributes,
|
||||
int *attributes_count);
|
||||
VAStatus SunxiCedrusGetDisplayAttributes(VADriverContextP context,
|
||||
VADisplayAttribute *attributes,
|
||||
int attributes_count);
|
||||
VAStatus SunxiCedrusSetDisplayAttributes(VADriverContextP context,
|
||||
VADisplayAttribute *attributes,
|
||||
int attributes_count);
|
||||
VAStatus RequestCreateConfig(VADriverContextP context, VAProfile profile,
|
||||
VAEntrypoint entrypoint,
|
||||
VAConfigAttrib *attributes, int attributes_count,
|
||||
VAConfigID *config_id);
|
||||
VAStatus RequestDestroyConfig(VADriverContextP context, VAConfigID config_id);
|
||||
VAStatus RequestQueryConfigProfiles(VADriverContextP context,
|
||||
VAProfile *profiles, int *profiles_count);
|
||||
VAStatus RequestQueryConfigEntrypoints(VADriverContextP context,
|
||||
VAProfile profile,
|
||||
VAEntrypoint *entrypoints,
|
||||
int *entrypoints_count);
|
||||
VAStatus RequestQueryConfigAttributes(VADriverContextP context,
|
||||
VAConfigID config_id, VAProfile *profile,
|
||||
VAEntrypoint *entrypoint,
|
||||
VAConfigAttrib *attributes,
|
||||
int *attributes_count);
|
||||
VAStatus RequestGetConfigAttributes(VADriverContextP context, VAProfile profile,
|
||||
VAEntrypoint entrypoint,
|
||||
VAConfigAttrib *attributes,
|
||||
int attributes_count);
|
||||
VAStatus RequestQueryDisplayAttributes(VADriverContextP context,
|
||||
VADisplayAttribute *attributes,
|
||||
int *attributes_count);
|
||||
VAStatus RequestGetDisplayAttributes(VADriverContextP context,
|
||||
VADisplayAttribute *attributes,
|
||||
int attributes_count);
|
||||
VAStatus RequestSetDisplayAttributes(VADriverContextP context,
|
||||
VADisplayAttribute *attributes,
|
||||
int attributes_count);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user