[vlc-commits] vdpau/deinterlace: set progressive flag on both output pictures
Rémi Denis-Courmont
git at videolan.org
Mon Oct 6 22:56:50 CEST 2014
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Oct 6 23:56:31 2014 +0300| [6500f61ed6f6f8525961fab89d2a69bb0172434a] | committer: Rémi Denis-Courmont
vdpau/deinterlace: set progressive flag on both output pictures
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6500f61ed6f6f8525961fab89d2a69bb0172434a
---
modules/hw/vdpau/deinterlace.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/modules/hw/vdpau/deinterlace.c b/modules/hw/vdpau/deinterlace.c
index cb30070..82a4bd9 100644
--- a/modules/hw/vdpau/deinterlace.c
+++ b/modules/hw/vdpau/deinterlace.c
@@ -91,6 +91,7 @@ static picture_t *Deinterlace(filter_t *filter, picture_t *src)
}
src->b_progressive = true;
+ dst->b_progressive = true;
return src;
}
More information about the vlc-commits
mailing list