-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathTweak.xm
185 lines (142 loc) · 4.16 KB
/
Tweak.xm
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#import <substrate.h>
#import <sys/sysctl.h>
#import <version.h>
#import "Header.h"
extern "C" {
BOOL UseVP9();
BOOL AllVP9();
int DecodeThreads();
BOOL SkipLoopFilter();
BOOL LoopFilterOptimization();
BOOL RowThreading();
}
// Remove any <= 1080p VP9 formats if AllVP9 is disabled
NSArray <MLFormat *> *filteredFormats(NSArray <MLFormat *> *formats) {
if (AllVP9()) return formats;
NSPredicate *predicate = [NSPredicate predicateWithBlock:^BOOL(MLFormat *format, NSDictionary *bindings) {
return [format height] > 1080 || [[format MIMEType] videoCodec] != 'vp09';
}];
return [formats filteredArrayUsingPredicate:predicate];
}
static void hookFormats(MLABRPolicy *self) {
YTIHamplayerConfig *config = [self valueForKey:@"_hamplayerConfig"];
if ([config.videoAbrConfig respondsToSelector:@selector(setPreferSoftwareHdrOverHardwareSdr:)])
config.videoAbrConfig.preferSoftwareHdrOverHardwareSdr = YES;
if ([config respondsToSelector:@selector(setDisableResolveOverlappingQualitiesByCodec:)])
config.disableResolveOverlappingQualitiesByCodec = NO;
YTIHamplayerStreamFilter *filter = config.streamFilter;
filter.enableVideoCodecSplicing = YES;
filter.av1.maxArea = MAX_PIXELS;
filter.av1.maxFps = MAX_FPS;
filter.vp9.maxArea = MAX_PIXELS;
filter.vp9.maxFps = MAX_FPS;
}
%hook MLHAMPlayerItem
- (void)load {
MLInnerTubePlayerConfig *config = [self valueForKey:@"_config"];
YTIMediaCommonConfig *mediaCommonConfig = config.mediaCommonConfig;
mediaCommonConfig.useServerDrivenAbr = NO;
%orig;
}
%end
%hook MLABRPolicy
- (void)setFormats:(NSArray *)formats {
hookFormats(self);
%orig(filteredFormats(formats));
}
%end
%hook MLABRPolicyOld
- (void)setFormats:(NSArray *)formats {
hookFormats(self);
%orig(filteredFormats(formats));
}
%end
%hook MLABRPolicyNew
- (void)setFormats:(NSArray *)formats {
hookFormats(self);
%orig(filteredFormats(formats));
}
%end
%hook YTIHamplayerHotConfig
%new(i@:)
- (int)libvpxDecodeThreads {
return DecodeThreads();
}
%new(B@:)
- (BOOL)libvpxRowThreading {
return RowThreading();
}
%new(B@:)
- (BOOL)libvpxSkipLoopFilter {
return SkipLoopFilter();
}
%new(B@:)
- (BOOL)libvpxLoopFilterOptimization {
return LoopFilterOptimization();
}
%end
%hook YTColdConfig
- (BOOL)mainAppCoreClientIosStartupSchedulerQosFriendlyHardwareDecodeSupportedEnabled {
return YES;
}
%end
%hook YTHotConfig
- (BOOL)iosPlayerClientSharedConfigDisableServerDrivenAbr {
return YES;
}
%end
%hook HAMDefaultABRPolicy
- (void)setFormats:(NSArray *)formats {
@try {
HAMDefaultABRPolicyConfig config = MSHookIvar<HAMDefaultABRPolicyConfig>(self, "_config");
config.softwareAV1Filter.maxArea = MAX_PIXELS;
config.softwareAV1Filter.maxFPS = MAX_FPS;
config.softwareVP9Filter.maxArea = MAX_PIXELS;
config.softwareVP9Filter.maxFPS = MAX_FPS;
MSHookIvar<HAMDefaultABRPolicyConfig>(self, "_config") = config;
} @catch (id ex) {}
%orig;
}
%end
%hook MLHLSStreamSelector
- (void)didLoadHLSMasterPlaylist:(id)arg1 {
%orig;
MLHLSMasterPlaylist *playlist = [self valueForKey:@"_completeMasterPlaylist"];
NSArray *remotePlaylists = [playlist remotePlaylists];
[[self delegate] streamSelectorHasSelectableVideoFormats:remotePlaylists];
}
%end
%group Spoofing
%hook UIDevice
- (NSString *)systemVersion {
return @"15.8.3";
}
%end
%hook NSProcessInfo
- (NSOperatingSystemVersion)operatingSystemVersion {
NSOperatingSystemVersion version;
version.majorVersion = 15;
version.minorVersion = 8;
version.patchVersion = 3;
return version;
}
%end
%hookf(int, sysctlbyname, const char *name, void *oldp, size_t *oldlenp, void *newp, size_t newlen) {
if (strcmp(name, "kern.osversion") == 0) {
if (oldp)
strcpy((char *)oldp, IOS_BUILD);
*oldlenp = strlen(IOS_BUILD);
}
return %orig(name, oldp, oldlenp, newp, newlen);
}
%end
%ctor {
[[NSUserDefaults standardUserDefaults] registerDefaults:@{
DecodeThreadsKey: @2
}];
if (!UseVP9()) return;
%init;
if (!IS_IOS_OR_NEWER(iOS_15_0)) {
%init(Spoofing);
}
}