diff options
author | Bradley Sepos <[email protected]> | 2016-05-03 06:19:14 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2016-05-03 06:32:34 -0400 |
commit | 35740ffd75bdee9c8b3d9d08a74fedef47296506 (patch) | |
tree | 59e5bb754a05b27f5bebd7fde27f9a657b9a3af4 /libhb/common.c | |
parent | 4ab21a0ca630dc4bac79149a6eec598921899fe5 (diff) |
libhb: Expand default frame rates to include 72, 75, 90, 100, 120.
Diffstat (limited to 'libhb/common.c')
-rw-r--r-- | libhb/common.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libhb/common.c b/libhb/common.c index 87551e90f..aef60cc27 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -102,6 +102,11 @@ hb_rate_internal_t hb_video_rates[] = { { "50", 540000, }, NULL, 1, }, { { "59.94", 450450, }, NULL, 1, }, { { "60", 450000, }, NULL, 1, }, + { { "72", 375000, }, NULL, 1, }, + { { "75", 360000, }, NULL, 1, }, + { { "90", 300000, }, NULL, 1, }, + { { "100", 270000, }, NULL, 1, }, + { { "120", 225000, }, NULL, 1, }, }; int hb_video_rates_count = sizeof(hb_video_rates) / sizeof(hb_video_rates[0]); |