[vlc-commits] Revert "vdpau: fix bottom bleeding with software decoding"
Rémi Denis-Courmont
git at videolan.org
Wed Apr 29 18:01:08 CEST 2015
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Apr 29 19:01:05 2015 +0300| [f5c300bfc9eea01956e5df123af24b28db5beba3] | committer: Rémi Denis-Courmont
Revert "vdpau: fix bottom bleeding with software decoding"
This reverts commit 3447e875e656961ee241bc91006ecd3ff5be84e0.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f5c300bfc9eea01956e5df123af24b28db5beba3
---
modules/hw/vdpau/chroma.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/modules/hw/vdpau/chroma.c b/modules/hw/vdpau/chroma.c
index d74951a..4164c22 100644
--- a/modules/hw/vdpau/chroma.c
+++ b/modules/hw/vdpau/chroma.c
@@ -65,7 +65,7 @@ static VdpStatus MixerSetupColors(filter_t *filter, const VdpProcamp *procamp,
{
filter_sys_t *sys = filter->p_sys;
VdpStatus err;
- VdpColorStandard std = (filter->fmt_in.video.i_visible_height > 576)
+ VdpColorStandard std = (filter->fmt_in.video.i_height > 576)
? VDP_COLOR_STANDARD_ITUR_BT_709
: VDP_COLOR_STANDARD_ITUR_BT_601;
@@ -187,7 +187,7 @@ static VdpVideoMixer MixerCreate(filter_t *filter)
VDP_VIDEO_MIXER_PARAMETER_CHROMA_TYPE,
};
uint32_t width = filter->fmt_in.video.i_width;
- uint32_t height = filter->fmt_in.video.i_visible_height;
+ uint32_t height = filter->fmt_in.video.i_height;
const void *values[3] = { &width, &height, &sys->chroma, };
err = vdp_video_mixer_create(sys->vdp, sys->device, featc, featv,
@@ -332,8 +332,7 @@ static picture_t *VideoImport(filter_t *filter, picture_t *src)
/* Create surface (TODO: reuse?) */
err = vdp_video_surface_create(sys->vdp, sys->device, sys->chroma,
filter->fmt_in.video.i_width,
- filter->fmt_in.video.i_visible_height,
- &surface);
+ filter->fmt_in.video.i_height, &surface);
if (err != VDP_STATUS_OK)
{
msg_Err(filter, "video %s %s failure: %s", "surface", "creation",
More information about the vlc-commits
mailing list