diff options
author | sr55 <[email protected]> | 2012-01-15 21:31:31 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-01-15 21:31:31 +0000 |
commit | 36a94e10b20fa086a56beaeaeaa4ffdd37fbc297 (patch) | |
tree | 5c7a164746bb14d33073fe1ed4d006b0742e4723 /win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs | |
parent | 93b80efe3131f046cd6bb59a4e39384523803d7a (diff) |
WinGui: Updated app-services library with support for auto-passthru.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4412 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs b/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs index 13216b608..6f3500d9e 100644 --- a/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs +++ b/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs @@ -29,6 +29,7 @@ namespace HandBrake.ApplicationServices.Model this.AudioTracks = new ObservableCollection<AudioTrack>();
this.SubtitleTracks = new ObservableCollection<SubtitleTrack>();
this.ChapterNames = new ObservableCollection<ChapterMarker>();
+ this.AllowedPassthruOptions = new AllowedPassthru();
}
#region Source
@@ -262,6 +263,11 @@ namespace HandBrake.ApplicationServices.Model /// Gets or sets AudioEncodings.
/// </summary>
public ObservableCollection<AudioTrack> AudioTracks { get; set; }
+
+ /// <summary>
+ /// Gets or sets AllowedPassthruOptions.
+ /// </summary>
+ public AllowedPassthru AllowedPassthruOptions { get; set; }
#endregion
#region Subtitles
|