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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
//
// HBStateFormatter+Private.m
// HandBrake
//
// Created by Damiano Galassi on 24/02/16.
//
//
#import "HBStateFormatter+Private.h"
@implementation HBStateFormatter (Private)
- (NSString *)stateToString:(hb_state_t)s
{
NSMutableString *string = [NSMutableString string];
switch (s.state)
{
#define p s.param.working
case HB_STATE_SEARCHING:
{
[string appendFormat:
NSLocalizedString(@"Searching for start point: %.2f %%", nil),
100.0 * p.progress];
if (p.seconds > -1)
{
[string appendFormat:NSLocalizedString(@" (ETA %02dh%02dm%02ds)", nil), p.hours, p.minutes, p.seconds];
}
break;
}
case HB_STATE_WORKING:
{
[string appendFormat:NSLocalizedString(@"Encoding %@ ", nil), self.title];
if (self.twoLines)
{
[string appendString:@"\n"];
}
if (self.showPassNumber && p.pass_count > -1)
{
if (p.pass_id == HB_PASS_SUBTITLE)
{
[string appendFormat:
NSLocalizedString(@"Pass %d %@ of %d, %.2f %%", nil),
p.pass,
NSLocalizedString(@"(subtitle scan)", nil),
p.pass_count, 100.0 * p.progress];
}
else
{
[string appendFormat:
NSLocalizedString(@"Pass %d of %d, %.2f %%", nil),
p.pass, p.pass_count, 100.0 * p.progress];
}
}
if (p.seconds > -1)
{
if (p.rate_cur > 0.0)
{
[string appendFormat:
NSLocalizedString(@" (%.2f fps, avg %.2f fps, ETA %02dh%02dm%02ds)", nil),
p.rate_cur, p.rate_avg, p.hours, p.minutes, p.seconds];
}
else
{
[string appendFormat:
NSLocalizedString(@" (ETA %02dh%02dm%02ds)", nil),
p.hours, p.minutes, p.seconds];
}
}
break;
}
#undef p
case HB_STATE_MUXING:
{
[string appendString:NSLocalizedString(@"Muxing…", nil)];
break;
}
case HB_STATE_PAUSED:
{
[string appendString:NSLocalizedString(@"Paused", nil)];
break;
}
case HB_STATE_SCANNING:
{
#define p s.param.scanning
if (p.preview_cur)
{
[string appendFormat:
NSLocalizedString(@"Scanning title %d of %d, preview %d…", nil),
p.title_cur, p.title_count,
p.preview_cur];
}
else
{
[string appendFormat:
NSLocalizedString(@"Scanning title %d of %d…", nil),
p.title_cur, p.title_count];
}
#undef p
break;
}
default:
break;
}
return string;
}
- (float)stateToPercentComplete:(hb_state_t)s
{
float progress = 0;
switch (s.state)
{
case HB_STATE_SEARCHING:
case HB_STATE_WORKING:
case HB_STATE_PAUSED:
#define p s.param.working
progress = (p.progress + p.pass - 1) / p.pass_count;
#undef p
break;
case HB_STATE_SCANNING:
#define p s.param.scanning
progress = p.progress;
#undef p
break;
case HB_STATE_MUXING:
progress = 1;
break;
default:
break;
}
if (progress < 0)
{
progress = 0;
}
else if (progress > 1)
{
progress = 1;
}
return progress;
}
@end
|