diff options
author | sr55 <[email protected]> | 2011-05-10 18:54:28 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-05-10 18:54:28 +0000 |
commit | c9515e922e6061b16f7edd3559be69aeacba51d9 (patch) | |
tree | ae1a4446c4772b345f1cf763cbba2ea63fc25c0a /win/CS/Controls/AudioPanel.cs | |
parent | 438c46cc940f3b93d8fa6e0329677e6fef48af90 (diff) |
WinGui:
- Couple of cosmetic fixes to the CLI Query that's generated.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3977 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/Controls/AudioPanel.cs')
-rw-r--r-- | win/CS/Controls/AudioPanel.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/win/CS/Controls/AudioPanel.cs b/win/CS/Controls/AudioPanel.cs index 7a63f7803..b946163fe 100644 --- a/win/CS/Controls/AudioPanel.cs +++ b/win/CS/Controls/AudioPanel.cs @@ -160,11 +160,13 @@ namespace Handbrake.Controls if (track.Encoder == AudioEncoder.Ac3Passthrough)
{
track.MixDown = HandBrake.ApplicationServices.Model.Encoding.Mixdown.Ac3Passthrough;
+ track.Bitrate = 0;
}
if (track.Encoder == AudioEncoder.DtsPassthrough)
{
track.MixDown = HandBrake.ApplicationServices.Model.Encoding.Mixdown.DtsPassthrough;
+ track.Bitrate = 0;
}
this.audioTracks.Add(track);
|