diff options
author | jstebbins <[email protected]> | 2011-10-25 22:38:46 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-10-25 22:38:46 +0000 |
commit | 2c338c33c23dedd81369f4c8c2bb89f97a18c03f (patch) | |
tree | a6b607862633e3f1a4941bd004cbe59f4ebffef7 | |
parent | 6619723bda6ac183322dbc7ee908edcd013b9e7d (diff) |
use more sensitive threshold for pullup detection
This improves our accuracy at detecting the framerate of telecined
material.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4320 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | libhb/scan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/scan.c b/libhb/scan.c index df20d2069..ce7752326 100644 --- a/libhb/scan.c +++ b/libhb/scan.c @@ -848,7 +848,7 @@ skip_preview: title->rate_base = vid_info.rate_base; if( is_close_to( vid_info.rate_base, 900900, 100 ) ) { - if( pulldown_count >= npreviews / 3 ) + if( pulldown_count >= npreviews / 4 ) { title->rate_base = 1126125; hb_deep_log( 2, "Pulldown detected, setting fps to 23.976" ); |