blob: a1b7fb0e58bbe66a1f7fbef2692588ad82422f17 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Working.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>
// The working.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Interop.Json.State
{
/// <summary>
/// The working.
/// </summary>
public class Working
{
/// <summary>
/// Gets or sets the hours.
/// </summary>
public int Hours { get; set; }
/// <summary>
/// Gets or sets the Pass ID.
/// </summary>
/// <remarks>
/// -1: Subtitle scan
/// 0: Encode
/// 1: Encode first pass
/// 2: Encode second pass
/// </remarks>
public int PassID { get; set; }
/// <summary>
/// Gets or sets the pass number (1-based).
/// </summary>
public int Pass { get; set; }
/// <summary>
/// Gets or sets the pass count.
/// </summary>
public int PassCount { get; set; }
/// <summary>
/// Gets or sets the minutes.
/// </summary>
public int Minutes { get; set; }
/// <summary>
/// Gets or sets the progress.
/// </summary>
public double Progress { get; set; }
/// <summary>
/// Gets or sets the rate.
/// </summary>
public double Rate { get; set; }
/// <summary>
/// Gets or sets the rate avg.
/// </summary>
public double RateAvg { get; set; }
/// <summary>
/// Gets or sets the seconds.
/// </summary>
public int Seconds { get; set; }
/// <summary>
/// Gets or sets the sequence id.
/// </summary>
public int SequenceID { get; set; }
}
}
|