Re: [Mesa-dev] [PATCH 2/2] st/vdpau: don't re-allocate interlaced buffer with packed YUV format

2017-10-01 Thread Andy Furniss

Tested-by: Andy Furniss 

Leo Liu wrote:

It caused corruption, when vlVdpVideoSurfacePutBitsYCbCr putting YUV to the 
fields

Cc: mesa-sta...@lists.freedesktop.org
Cc: Andy Furniss 
---
  src/gallium/state_trackers/vdpau/surface.c | 2 ++
  1 file changed, 2 insertions(+)

diff --git a/src/gallium/state_trackers/vdpau/surface.c 
b/src/gallium/state_trackers/vdpau/surface.c
index 884ae30831..c678eb7037 100644
--- a/src/gallium/state_trackers/vdpau/surface.c
+++ b/src/gallium/state_trackers/vdpau/surface.c
@@ -350,6 +350,8 @@ vlVdpVideoSurfacePutBitsYCbCr(VdpVideoSurface surface,
  
   /* adjust the template parameters */

   p_surf->templat.buffer_format = nformat;
+ if (nformat == PIPE_FORMAT_YUYV || nformat == PIPE_FORMAT_UYVY)
+p_surf->templat.interlaced = false;
  
   /* and try to create the video buffer with the new format */

   p_surf->video_buffer = pipe->create_video_buffer(pipe, 
_surf->templat);



___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev


[Mesa-dev] [PATCH 2/2] st/vdpau: don't re-allocate interlaced buffer with packed YUV format

2017-09-30 Thread Leo Liu
It caused corruption, when vlVdpVideoSurfacePutBitsYCbCr putting YUV to the 
fields

Cc: mesa-sta...@lists.freedesktop.org
Cc: Andy Furniss 
---
 src/gallium/state_trackers/vdpau/surface.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/gallium/state_trackers/vdpau/surface.c 
b/src/gallium/state_trackers/vdpau/surface.c
index 884ae30831..c678eb7037 100644
--- a/src/gallium/state_trackers/vdpau/surface.c
+++ b/src/gallium/state_trackers/vdpau/surface.c
@@ -350,6 +350,8 @@ vlVdpVideoSurfacePutBitsYCbCr(VdpVideoSurface surface,
 
  /* adjust the template parameters */
  p_surf->templat.buffer_format = nformat;
+ if (nformat == PIPE_FORMAT_YUYV || nformat == PIPE_FORMAT_UYVY)
+p_surf->templat.interlaced = false;
 
  /* and try to create the video buffer with the new format */
  p_surf->video_buffer = pipe->create_video_buffer(pipe, 
_surf->templat);
-- 
2.11.0

___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev