diff options
author | jstebbins <[email protected]> | 2011-01-28 23:18:21 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-01-28 23:18:21 +0000 |
commit | f839f412fb7c05e20201d3b09560e5ba085a4fe1 (patch) | |
tree | 92be215f512b5801337b3363bbb3ed597a72dcbc /gtk/src/makedeps.py | |
parent | 5eac1c0562ead268ffa4ace6bf86981c7f884faf (diff) |
LinGui: add CFR option for "Same as source" framerate.
Since there seem to be a lot of players that do not properly support VFR,
add a CFR option that can be used with "Same as source". The framerate to
use comes from the title and the cfr flag is set in the job.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3770 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/makedeps.py')
-rw-r--r-- | gtk/src/makedeps.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/src/makedeps.py b/gtk/src/makedeps.py index 121c5654a..2e07eda3e 100644 --- a/gtk/src/makedeps.py +++ b/gtk/src/makedeps.py @@ -25,7 +25,8 @@ dep_map = ( DepEntry("vquality_type_constant", "VideoQualitySlider", "TRUE", False, False), DepEntry("vquality_type_constant", "VideoTwoPass", "TRUE", True, False), DepEntry("vquality_type_constant", "VideoTurboTwoPass", "TRUE", True, False), - DepEntry("VideoFramerate", "VideoFrameratePFR", "source", True, False), + DepEntry("VideoFramerate", "VideoFrameratePFR", "source", True, True), + DepEntry("VideoFramerate", "VideoFramerateVFR", "source", False, True), DepEntry("VideoTwoPass", "VideoTurboTwoPass", "TRUE", False, False), DepEntry("FileFormat", "Mp4LargeFile", "mp4", False, True), DepEntry("FileFormat", "Mp4HttpOptimize", "mp4", False, True), |