vlc/vlc-2.2 | branch: master | Rémi Denis-Courmont <[email protected]> | Mon Oct 6 23:56:31 2014 +0300| [73f12e7621c302f75d2a33aec7d179e5b4969880] | committer: Rémi Denis-Courmont
vdpau/deinterlace: set progressive flag on both output pictures (cherry picked from commit 6500f61ed6f6f8525961fab89d2a69bb0172434a) > http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=73f12e7621c302f75d2a33aec7d179e5b4969880 --- 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 44d7f25..f2abbdd 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; } _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
