diff options
-rw-r--r-- | libhb/common.c | 1 | ||||
-rw-r--r-- | macosx/Controller.mm | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/libhb/common.c b/libhb/common.c index 7a9679f3a..39e6140ec 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -177,6 +177,7 @@ int hb_calc_bitrate( hb_job_t * job, int size ) case HB_MUX_MP4: case HB_MUX_PSP: case HB_MUX_IPOD: + case HB_MUX_MKV: overhead = 6; break; case HB_MUX_AVI: diff --git a/macosx/Controller.mm b/macosx/Controller.mm index ac4a8a5bb..c829bba27 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -1000,6 +1000,9 @@ list = hb_get_titles( fHandle ); case 2: ext = "ogm"; break; + case 3: + ext = "mkv"; + break; } |