summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpylee <penne.y.lee@intel.com>2014-06-23 05:03:02 -0700
committerSean V Kelley <seanvk@posteo.de>2016-08-05 13:30:50 -0700
commit4eeb8a0b8c4309e8418ff1e336106c67d5fd2143 (patch)
tree75bb7594fbcdbda0f781e2899bd3cb871af3e07d
parent7c22907a38eda406bf9b30dfcf0792b1217bb482 (diff)
Add VPP format and resolution query.scalingformat
Signed-off-by: Sean V Kelley <seanvk@posteo.de>
-rw-r--r--va/va_vpp.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/va/va_vpp.h b/va/va_vpp.h
index 8ac0923..8895429 100644
--- a/va/va_vpp.h
+++ b/va/va_vpp.h
@@ -354,6 +354,33 @@ typedef struct _VAProcPipelineCaps {
VAProcColorStandardType *output_color_standards;
/** \brief Number of elements in \ref output_color_standards array. */
unsigned int num_output_color_standards;
+
+ /** \brief Number of elements in \ref input_pixel_format array. */
+ unsigned int num_input_pixel_formats;
+ /** \brief List of input pixel formats in fourcc. */
+ unsigned int *input_pixel_format;
+ /** \brief Number of elements in \ref output_pixel_format array. */
+ unsigned int num_output_pixel_formats;
+ /** \brief List of output pixel formats in fourcc. */
+ unsigned int *output_pixel_format;
+
+ /** \brief Max supported input width in pixels. */
+ unsigned int max_input_width;
+ /** \brief Max supported input height in pixels. */
+ unsigned int max_input_height;
+ /** \brief Min supported input width in pixels. */
+ unsigned int min_input_width;
+ /** \brief Min supported input height in pixels. */
+ unsigned int min_input_height;
+
+ /** \brief Max supported output width in pixels. */
+ unsigned int max_output_width;
+ /** \brief Max supported output height in pixels. */
+ unsigned int max_output_height;
+ /** \brief Min supported output width in pixels. */
+ unsigned int min_output_width;
+ /** \brief Min supported output height in pixels. */
+ unsigned int min_output_height;
} VAProcPipelineCaps;
/** \brief Specification of values supported by the filter. */