diff options
author | John Stebbins <[email protected]> | 2016-02-16 15:45:39 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-02-16 15:45:39 -0700 |
commit | 2ffd38224aaed783471d7a6203782d27273e876b (patch) | |
tree | 414703d88b0b9aa4fc531a2c6cba4f8f174cfd4a | |
parent | 460a5ea930217e603bdcdd1383a008fdcfbaefad (diff) |
deinterlace: fix mapping of legacy "slow" preset
-rw-r--r-- | libhb/param.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/param.c b/libhb/param.c index f9ec82092..e30c56b3e 100644 --- a/libhb/param.c +++ b/libhb/param.c @@ -73,7 +73,7 @@ static hb_filter_param_t deinterlace_presets[] = { 5, "Bob", "bob", "7:-1" }, { 0, NULL, NULL, NULL }, { 2, "Fast", "fast", "1:-1:" }, - { 3, "Slow", "slow", "3:-1:" }, + { 3, "Slow", "slow", "1:-1:" }, { 4, "Slower", "slower", "3:-1:" } }; |