Commit 0476de6b authored by Gwenole Beauchesne's avatar Gwenole Beauchesne Committed by Xiang, Haihao

Fix vaQueryImageFormats() to return 0 image formats supported at this time.

parent f1307ebb
...@@ -346,6 +346,9 @@ i965_QueryImageFormats(VADriverContextP ctx, ...@@ -346,6 +346,9 @@ i965_QueryImageFormats(VADriverContextP ctx,
VAImageFormat *format_list, /* out */ VAImageFormat *format_list, /* out */
int *num_formats) /* out */ int *num_formats) /* out */
{ {
if (num_formats)
*num_formats = 0;
return VA_STATUS_SUCCESS; return VA_STATUS_SUCCESS;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment