From: Rodeo Date: Mon, 19 Mar 2012 22:02:23 +0000 (+0000) Subject: Add framerate values for 30, 50, 60000/1001 and 60 fps to 0.9 branch. X-Git-Tag: 0.9.6.1~56 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b33af50c23ef4962a2ad47bc7aa0c13aa470b15e;p=handbrake Add framerate values for 30, 50, 60000/1001 and 60 fps to 0.9 branch. Might be useful if we want to add updated presets to the bugfix release. git-svn-id: svn://svn.handbrake.fr/HandBrake/branches/0.9.x@4519 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- 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 );