From: Laurent Aimar Date: Sun, 25 Jul 2010 19:09:14 +0000 (+0200) Subject: Enabled back bob, linear and yadif2x mode in vout. X-Git-Tag: 1.2.0-pre1~5458 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=2b5b0dc8189e3029fe378be0746b8c592ba057cc;p=vlc Enabled back bob, linear and yadif2x mode in vout. They are not yet really functionnal, the vout will throw the extra frames. --- diff --git a/src/video_output/interlacing.c b/src/video_output/interlacing.c index 78280d204c..f3e6609935 100644 --- a/src/video_output/interlacing.c +++ b/src/video_output/interlacing.c @@ -43,11 +43,11 @@ static const char *deinterlace_modes[] = { //"discard", "blend", //"mean", - //"bob", - //"linear", + "bob", + "linear", "x", "yadif", - //"yadif2x", + "yadif2x", NULL }; static bool DeinterlaceIsModeValid(const char *mode)