Re: [Libva] [PATCH 3/4] Addin the implementation into i965_ouput_xv module.

2013-09-12 Thread ykzhao
On Thu, 2013-09-12 at 20:16 -0600, Ung, Teng En wrote: > Signed-off-by: Ung, Teng En > --- > src/i965_output_xv.c | 203 > +-- > 1 file changed, 198 insertions(+), 5 deletions(-) > > diff --git a/src/i965_output_xv.c b/src/i965_output_xv.c > index

Re: [Libva] [PATCH 1/4] Initial code for VAAPI/XV interface. Addin empty i965_output_xv module, render mode attributes, and build code to detect XV.

2013-09-12 Thread ykzhao
On Thu, 2013-09-12 at 20:16 -0600, Ung, Teng En wrote: > This add in the configuration and makefile to detect XV and build the > i965_ouput_xv module. Also included the VADisplayRenderModeAttr, will only > use overlay is user set to overlay render mode. > Generally speaking, this patch set is

[Libva] [PATCH 0/4] VAAPI/XV interface to output the sprite/overlay under X11.

2013-09-12 Thread Ung, Teng En
Hi, These patches set is initial draft for interface between VA/XV through share bo. Through this, the output surface can be in YUY pixel format and flip to sprtie/overlay under X11. Anyway, this is still new, let me know if there is anythings incorrect. Thanks Ung, Teng En (4):

[Libva] [PATCH 2/4] Created the basic draft for the VA/XV interface.

2013-09-12 Thread Ung, Teng En
Signed-off-by: Ung, Teng En --- src/Makefile.am | 4 +- src/va_xv.c | 351 ++ src/va_xv.h | 51 src/va_xv_ddx.h | 43 +++ src/va_xvcommon.h | 57 + 5 files changed, 504 insertions(+), 2 deletions(-) cr

[Libva] [PATCH 4/4] Enable the output to XV only user set the render mode attribute to overlay.

2013-09-12 Thread Ung, Teng En
Signed-off-by: Ung, Teng En --- src/i965_drv_video.c | 11 +++ src/i965_output_xv.c | 46 +++--- src/i965_output_xv.h | 4 3 files changed, 54 insertions(+), 7 deletions(-) diff --git a/src/i965_drv_video.c b/src/i965_drv_video.c index fb23c8

[Libva] [PATCH 1/4] Initial code for VAAPI/XV interface. Addin empty i965_output_xv module, render mode attributes, and build code to detect XV.

2013-09-12 Thread Ung, Teng En
This add in the configuration and makefile to detect XV and build the i965_ouput_xv module. Also included the VADisplayRenderModeAttr, will only use overlay is user set to overlay render mode. Signed-off-by: Ung, Teng En --- configure.ac | 18 ++ src/Makefile.am | 5 +++

[Libva] [PATCH 3/4] Addin the implementation into i965_ouput_xv module.

2013-09-12 Thread Ung, Teng En
Signed-off-by: Ung, Teng En --- src/i965_output_xv.c | 203 +-- 1 file changed, 198 insertions(+), 5 deletions(-) diff --git a/src/i965_output_xv.c b/src/i965_output_xv.c index 8b361da..0138e99 100644 --- a/src/i965_output_xv.c +++ b/src/i965_outpu