blob: 8c386546c27b41505d5a850b69d15eca09e6beba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="SourceSubtitle.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// Defines the SourceSubtitle type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Model
{
public class SourceSubtitle
{
/// <summary>
/// Gets or sets the 1-based subtitle track number. 0 means foriegn audio search.
/// </summary>
public int TrackNumber { get; set; }
public bool Default { get; set; }
public bool Forced { get; set; }
public bool BurnedIn { get; set; }
public SourceSubtitle Clone()
{
return new SourceSubtitle
{
TrackNumber = this.TrackNumber,
Default = this.Default,
Forced = this.Forced,
BurnedIn = this.BurnedIn
};
}
}
}
|