diff options
author | Rodeo <[email protected]> | 2012-03-19 22:00:26 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2012-03-19 22:00:26 +0000 |
commit | e132b801ad17e036a537784c19c43251e7a790ae (patch) | |
tree | 5fddb52a0d136b4f64568ea821d7958f4b1f6aa5 /libhb/common.c | |
parent | 582d0170487c8dcd113cae0e0b38345226f3147e (diff) |
Add framerate values for 30, 50, 60000/1001 and 60 fps.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4518 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.c')
-rw-r--r-- | libhb/common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libhb/common.c b/libhb/common.c index a5e16984c..adbd5591e 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -19,7 +19,8 @@ hb_rate_t hb_video_rates[] = { { "5", 5400000 }, { "10", 2700000 }, { "12", 2250000 }, { "15", 1800000 }, { "23.976", 1126125 }, { "24", 1125000 }, - { "25", 1080000 }, { "29.97", 900900 } }; + { "25", 1080000 }, { "29.97", 900900 }, { "30", 900000 }, + { "50", 540000 }, { "59.94", 450450 }, { "60", 450000 } }; int hb_video_rates_count = sizeof( hb_video_rates ) / sizeof( hb_rate_t ); |