From ba3674603258b9bd9662af2b8f2225f9e9395ca1 Mon Sep 17 00:00:00 2001 From: jstebbins Date: Sun, 30 Jun 2013 20:44:21 +0000 Subject: libhb: add experimental avformat muxer for mkv and mp4 git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5620 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- libhb/common.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'libhb/common.h') diff --git a/libhb/common.h b/libhb/common.h index 472d8d018..2ce180034 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -463,9 +463,12 @@ struct hb_job_s */ #define HB_MUX_MASK 0xFF0000 #define HB_MUX_MP4V2 0x010000 -#define HB_MUX_MASK_MP4 0x0F0000 +#define HB_MUX_AV_MP4 0x020000 +#define HB_MUX_MASK_MP4 0x030000 #define HB_MUX_LIBMKV 0x100000 -#define HB_MUX_MASK_MKV 0xF00000 +#define HB_MUX_AV_MKV 0x200000 +#define HB_MUX_MASK_MKV 0x300000 +#define HB_MUX_MASK_AV 0x220000 /* default muxer for each container */ #define HB_MUX_MP4 HB_MUX_MP4V2 #define HB_MUX_MKV HB_MUX_LIBMKV @@ -590,6 +593,7 @@ struct hb_audio_config_s int normalize_mix_level; /* mix level normalization (boolean) */ int dither_method; /* dither algorithm */ char * name; /* Output track name */ + int delay; } out; /* Input */ -- cgit v1.2.3