diff options
author | randomengy <[email protected]> | 2013-06-18 02:05:59 +0000 |
---|---|---|
committer | randomengy <[email protected]> | 2013-06-18 02:05:59 +0000 |
commit | f7fbce3a0ca517b886a38ec59e41d619d5e0c157 (patch) | |
tree | a7529fe90a49012af982e37c95bece198a8c4995 /win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/NativeConstants.cs | |
parent | a7c727258d956a3a54e8b051d0b4838e56632685 (diff) |
Interop: Bringing it up to speed with the latest nightlies. Interop now exposes the list of valid sample rates and framerates in Encoders.cs. Also fixing a problem with Custom anamorphic and maximum height.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5593 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/NativeConstants.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/NativeConstants.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/NativeConstants.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/NativeConstants.cs index 52d1d253e..ae7fcd704 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/NativeConstants.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/HbLib/NativeConstants.cs @@ -39,7 +39,7 @@ namespace HandBrake.Interop.HbLib public const uint HB_ACODEC_AC3_PASS = (HB_ACODEC_AC3 | HB_ACODEC_PASS_FLAG);
public const uint HB_ACODEC_DCA_PASS = (HB_ACODEC_DCA | HB_ACODEC_PASS_FLAG);
public const uint HB_ACODEC_DCA_HD_PASS = (HB_ACODEC_DCA_HD | HB_ACODEC_PASS_FLAG);
- public const uint HB_ACODEC_ANY = (HB_ACODEC_MASK | HB_ACODEC_PASS_FLAG); + public const uint HB_ACODEC_ANY = (HB_ACODEC_MASK | HB_ACODEC_PASS_FLAG);
// Subtitle Types
public const int HB_SUBSTREAM_BD_TRUEHD = 0x72;
@@ -59,7 +59,7 @@ namespace HandBrake.Interop.HbLib // Muxers
public const int HB_MUX_MASK = 0xFF0000;
public const int HB_MUX_MP4 = 0x010000;
- public const int HB_MUX_MKV = 0x200000;
+ public const int HB_MUX_MKV = 0x100000;
public const int HBTF_NO_IDR = 1 << 0;
|