diff options
author | Rodeo <[email protected]> | 2013-01-02 21:44:38 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2013-01-02 21:44:38 +0000 |
commit | a2a844aaf85c003320170d446adcdb14e05317cc (patch) | |
tree | a376b4ada55ddc3ffd91d8491a5e42ba165dde63 /libhb/common.h | |
parent | 036e9b30ce75ebe78ad8c6e4ce5de7cf6c12777f (diff) |
FLAC: add 24-bit encoding.
Works via a dedicated encoder: "FLAC (24-bit)", "ffflac24".
Users who prefer 16-bit can use the previous FLAC encoder: "FLAC (ffmpeg)", "ffflac".
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5134 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libhb/common.h b/libhb/common.h index 0b6d6ec2c..fd49d4d29 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -449,7 +449,7 @@ struct hb_job_s /* Audio starts here */ /* Audio Codecs */ -#define HB_ACODEC_MASK 0x001FFF00 +#define HB_ACODEC_MASK 0x003FFF00 #define HB_ACODEC_FAAC 0x00000100 #define HB_ACODEC_LAME 0x00000200 #define HB_ACODEC_VORBIS 0x00000400 @@ -463,7 +463,8 @@ struct hb_job_s #define HB_ACODEC_DCA_HD 0x00040000 #define HB_ACODEC_MP3 0x00080000 #define HB_ACODEC_FFFLAC 0x00100000 -#define HB_ACODEC_FF_MASK 0x001f2000 +#define HB_ACODEC_FFFLAC24 0x00200000 +#define HB_ACODEC_FF_MASK 0x003F2000 #define HB_ACODEC_PASS_FLAG 0x40000000 #define HB_ACODEC_PASS_MASK (HB_ACODEC_MP3 | HB_ACODEC_FFAAC | HB_ACODEC_DCA_HD | HB_ACODEC_AC3 | HB_ACODEC_DCA) #define HB_ACODEC_AUTO_PASS (HB_ACODEC_PASS_MASK | HB_ACODEC_PASS_FLAG) |