diff options
author | Christophe Thommeret <hftom@free.fr> | 2008-12-16 16:28:22 +0000 |
---|---|---|
committer | Christophe Thommeret <hftom@free.fr> | 2008-12-16 16:28:22 +0000 |
commit | 22d81ff6f76f11119dbb564d9e2d9430461f17b6 (patch) | |
tree | 4710b9440061729c2cdcd6c064fca4737d4d86b2 /src | |
parent | 0fc04f0d13c05ab641c10584edb9d3515a7b3fe1 (diff) | |
download | xine-lib-22d81ff6f76f11119dbb564d9e2d9430461f17b6.tar.gz xine-lib-22d81ff6f76f11119dbb564d9e2d9430461f17b6.tar.bz2 |
More deinterlacing.
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/video_out_vdpau.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_out/video_out_vdpau.c b/src/video_out/video_out_vdpau.c index a72054337..af43f5e50 100644 --- a/src/video_out/video_out_vdpau.c +++ b/src/video_out/video_out_vdpau.c @@ -706,7 +706,7 @@ static void vdpau_display_frame (vo_driver_t *this_gen, vo_frame_t *frame_gen) past[0] = surface; past[1] = (this->back_frame[0] && (this->back_frame[0]->format==XINE_IMGFMT_VDPAU)) ? this->back_frame[0]->vdpau_accel_data.surface : VDP_INVALID_HANDLE; - future[0] = VDP_INVALID_HANDLE; + future[0] = surface;//VDP_INVALID_HANDLE; st = vdp_video_mixer_render( this->video_mixer, VDP_INVALID_HANDLE, 0, VDP_VIDEO_MIXER_PICTURE_STRUCTURE_BOTTOM_FIELD, 2, past, surface, 1, future, &vid_source, this->output_surface[this->current_output_surface], &out_dest, &vid_dest, layer_count, layer_count?layer:NULL ); if ( st != VDP_STATUS_OK ) |