diff options
author | sr55 <[email protected]> | 2017-06-14 22:07:14 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2017-06-14 22:07:14 +0100 |
commit | e2aaa9f501ab10d6ca3b01dbd3306b73334c917e (patch) | |
tree | 1794ebd3d4eb442fa018a04aff3170a91f01618f /win/CS/HandBrake.ApplicationServices/Interop/Json/Encode | |
parent | 0b65b3005312401d0f9aad7acb00aa412cea7376 (diff) |
WinGui: Add checkbox for Legacy A/V alignment behaviour for players that don't support MP4 Edit Lists. #778
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Interop/Json/Encode')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Interop/Json/Encode/Destination.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Json/Encode/Destination.cs b/win/CS/HandBrake.ApplicationServices/Interop/Json/Encode/Destination.cs index 9d22fb98a..910a541ca 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/Json/Encode/Destination.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/Json/Encode/Destination.cs @@ -27,6 +27,11 @@ namespace HandBrake.ApplicationServices.Interop.Json.Encode public bool ChapterMarkers { get; set; }
/// <summary>
+ /// Use Legacy A/V Alignment rather than Edit Lists.
+ /// </summary>
+ public bool AlignAVStart { get; set; }
+
+ /// <summary>
/// Gets or sets the file.
/// </summary>
public string File { get; set; }
|