diff options
author | randomengy <[email protected]> | 2014-06-11 03:45:16 +0000 |
---|---|---|
committer | randomengy <[email protected]> | 2014-06-11 03:45:16 +0000 |
commit | f9da2ea7534cc8603951d44ad8c4ce4497c5c851 (patch) | |
tree | 3b92e31b1614a9f54fca7aa7423dec3551800174 /win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs | |
parent | 9491a0b137116e8606d4d08f419514d0c298debd (diff) |
Interop: Fixed a bug that was causing crashes on AAC passthrough. We were clobbering the private data section with zeroes. Also added support for passing through a track if it's possible.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6210 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs index c6ac28ea5..7aa211c8d 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs @@ -37,6 +37,11 @@ namespace HandBrake.Interop.Model.Encoding public string Encoder { get; set; }
/// <summary>
+ /// Will pass through the track if it maches the codec type.
+ /// </summary>
+ public bool PassthroughIfPossible { get; set; }
+
+ /// <summary>
/// Gets or sets the encode rate type (bitrate or quality).
/// </summary>
public AudioEncodeRateType EncodeRateType { get; set; }
|