diff options
author | jstebbins <[email protected]> | 2011-03-08 16:12:57 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-03-08 16:12:57 +0000 |
commit | 673a841b1ef2dcd31647fce00829dc4a3f2b0715 (patch) | |
tree | b11d12d19c798463a8756d8f5f989e6d2865765b /libhb/hb.h | |
parent | 6444014c71cd881ad4874e96a6138ea268be8b4d (diff) |
make keyint match between 1st and 2nd passes of vfr and pfr encodes.
make keyint and fps settings consistent across video encoders.
make interjob->vrate changes for pfr mode like we do for vfr since
pfr is the same as vfr except when it hits it's peak.
in mkv, set track default duration to actual measured vrate on 2 pass encodes.
thanks to Rodeo for the corrections in encx264
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3831 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/hb.h')
-rw-r--r-- | libhb/hb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/hb.h b/libhb/hb.h index 38634b2a5..56566f330 100644 --- a/libhb/hb.h +++ b/libhb/hb.h @@ -82,8 +82,8 @@ typedef struct hb_interjob_s int frame_count; /* number of frames counted by sync */ uint64_t total_time; /* real length in 90khz (i.e. / 90000 */ int render_dropped; /* frames droped by telecine */ - int vrate; /* initial assigned vrate */ - int vrate_base; /* initial assigned vrate_base */ + int vrate; /* actual measured output vrate from 1st pass */ + int vrate_base; /* actual measured output vrate_base from 1st pass */ hb_subtitle_t *select_subtitle; /* foreign language scan subtitle */ } hb_interjob_t; |