[vlc-commits] libvlc: change default deinterlace mode from blend to auto
Victorien Le Couviour--Tuffet
git at videolan.org
Fri Jun 23 11:50:56 CEST 2017
vlc | branch: master | Victorien Le Couviour--Tuffet <victorien.lecouviour.tuffet at gmail.com> | Wed Jun 14 11:25:12 2017 +0200| [e152747f25d61065fa89d488f1d6c29c88c6a7de] | committer: Thomas Guillem
libvlc: change default deinterlace mode from blend to auto
Signed-off-by: Thomas Guillem <thomas at gllm.fr>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e152747f25d61065fa89d488f1d6c29c88c6a7de
---
src/libvlc-module.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/libvlc-module.c b/src/libvlc-module.c
index 4cde870d9f..d3a446e832 100644
--- a/src/libvlc-module.c
+++ b/src/libvlc-module.c
@@ -349,12 +349,12 @@ static const char * const ppsz_deinterlace_text[] = {
#define DEINTERLACE_MODE_LONGTEXT N_( \
"Deinterlace method to use for video processing.")
static const char * const ppsz_deinterlace_mode[] = {
- "discard", "blend", "mean", "bob",
+ "auto", "discard", "blend", "mean", "bob",
"linear", "x", "yadif", "yadif2x", "phosphor",
"ivtc"
};
static const char * const ppsz_deinterlace_mode_text[] = {
- N_("Discard"), N_("Blend"), N_("Mean"), N_("Bob"),
+ N_("Auto"), N_("Discard"), N_("Blend"), N_("Mean"), N_("Bob"),
N_("Linear"), "X", "Yadif", "Yadif (2x)", N_("Phosphor"),
N_("Film NTSC (IVTC)")
};
@@ -1610,7 +1610,7 @@ vlc_module_begin ()
DEINTERLACE_TEXT, DEINTERLACE_LONGTEXT, false )
change_integer_list( pi_deinterlace, ppsz_deinterlace_text )
change_safe()
- add_string( "deinterlace-mode", "blend",
+ add_string( "deinterlace-mode", "auto",
DEINTERLACE_MODE_TEXT, DEINTERLACE_MODE_LONGTEXT, false )
change_string_list( ppsz_deinterlace_mode, ppsz_deinterlace_mode_text )
change_safe()
More information about the vlc-commits
mailing list