diff options
author | Grigori Goronzy <[email protected]> | 2013-10-09 02:23:51 +0200 |
---|---|---|
committer | Christian König <[email protected]> | 2013-10-09 13:02:40 +0200 |
commit | 48563bd45c546a7759d6f739607b9f0906b4c8ad (patch) | |
tree | 0b68f34dfe3d694421e50412bf63df62cdcdcfbf /src/gallium/state_trackers/vdpau/output.c | |
parent | 1a5bac2149fa2c6224b40c0b40839c2025414e79 (diff) |
st/vdpau: add new formats to OutputSurface rendering
OutputSurfaces have simple YCbCr rendering functionality built in,
but so far only 4:2:0 subsampling worked correctly. This fixes 4:2:2
and 4:4:4 formats.
Reviewed-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/vdpau/output.c')
-rw-r--r-- | src/gallium/state_trackers/vdpau/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/vdpau/output.c b/src/gallium/state_trackers/vdpau/output.c index dd72f6f63da..cf77b532485 100644 --- a/src/gallium/state_trackers/vdpau/output.c +++ b/src/gallium/state_trackers/vdpau/output.c @@ -442,7 +442,7 @@ vlVdpOutputSurfacePutBitsYCbCr(VdpOutputSurface surface, vlVdpResolveDelayedRendering(vlsurface->device, NULL, NULL); memset(&vtmpl, 0, sizeof(vtmpl)); vtmpl.buffer_format = format; - vtmpl.chroma_format = PIPE_VIDEO_CHROMA_FORMAT_420; + vtmpl.chroma_format = FormatYCBCRToPipeChroma(source_ycbcr_format); if (destination_rect) { vtmpl.width = abs(destination_rect->x0-destination_rect->x1); |