diff options
author | jbrjake <[email protected]> | 2008-05-17 22:55:41 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2008-05-17 22:55:41 +0000 |
commit | 7317cc104f719b594da170fec73420dcc4213ee8 (patch) | |
tree | 9efb0d3feaac366ded95a01dd5944b71fdbb457f /libhb/sync.c | |
parent | 20308dcd550d6bf33ae04c938a5c03da9d96cbac (diff) |
Re-allow constant frame rates. The MacGui should probably be updated to always use title fps for VFR instead of "Same as Source" which might be 23.976, but it's taken care of in work.c now so it's purely a cosmetic thing.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1464 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/sync.c')
-rw-r--r-- | libhb/sync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/sync.c b/libhb/sync.c index d78398531..34b426f6d 100644 --- a/libhb/sync.c +++ b/libhb/sync.c @@ -512,7 +512,7 @@ static int SyncVideo( hb_work_object_t * w ) } int64_t duration; - if ( job->mux & HB_MUX_AVI ) + if ( job->mux & HB_MUX_AVI || job->title->rate_base != job->vrate_base ) { /* * The concept of variable frame rate video was a bit too advanced |