blob: edfb68bf79b2b2ca5d7bef98be8699f2eb9bf48c (
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
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HandBrake.Interop
{
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
};
}
}
}
|