diff options
author | Waldo Bastian <waldo.bastian@intel.com> | 2007-09-20 08:38:06 -0700 |
---|---|---|
committer | Waldo Bastian <waldo.bastian@intel.com> | 2007-09-20 08:38:06 -0700 |
commit | 9134c0e5ff4599137a63b0ebf5dab018f44286e6 (patch) | |
tree | bafa1492a6fe9ff7e00cc6d2d0adcbcd8e9a8e9f /dummy_drv_video | |
parent | de4abcf3c10dca94d4c32a1a14fc5d4e577c97f8 (diff) | |
download | libva-9134c0e5ff4599137a63b0ebf5dab018f44286e6.tar.gz |
Swapped vaGetConfigAttributes and vaQueryConfigAttributes for API consistency
Diffstat (limited to 'dummy_drv_video')
-rw-r--r-- | dummy_drv_video/dummy_drv_video.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dummy_drv_video/dummy_drv_video.c b/dummy_drv_video/dummy_drv_video.c index 97fcc46..5963e45 100644 --- a/dummy_drv_video/dummy_drv_video.c +++ b/dummy_drv_video/dummy_drv_video.c @@ -141,7 +141,7 @@ VAStatus dummy_QueryConfigEntrypoints( return VA_STATUS_SUCCESS; } -VAStatus dummy_QueryConfigAttributes( +VAStatus dummy_GetConfigAttributes( VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint, @@ -332,7 +332,7 @@ VAStatus dummy_DestroyConfig( return VA_STATUS_SUCCESS; } -VAStatus dummy_GetConfigAttributes( +VAStatus dummy_QueryConfigAttributes( VADriverContextP ctx, VAConfigID config_id, VAProfile *profile, /* out */ |