]> granicus.if.org Git - handbrake/commitdiff
Add framerate values for 30, 50, 60000/1001 and 60 fps to 0.9 branch.
authorRodeo <tdskywalker@gmail.com>
Mon, 19 Mar 2012 22:02:23 +0000 (22:02 +0000)
committerRodeo <tdskywalker@gmail.com>
Mon, 19 Mar 2012 22:02:23 +0000 (22:02 +0000)
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

libhb/common.c

index a5e16984c118d60f5b6f7618467f8c98bf4089c5..adbd5591eb69b4e3b78e1ae014694812694ce38d 100644 (file)
@@ -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 );