-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathTweak.xm
159 lines (122 loc) · 3.82 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
#import <substrate.h>
#import <sys/sysctl.h>
#import <version.h>
#import "Header.h"
extern "C" BOOL UseVP9();
extern "C" BOOL AllVP9();
// 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 YTHotConfig
- (BOOL)iosClientGlobalConfigEnableNewMlabrpolicy {
return NO;
}
- (BOOL)iosPlayerClientSharedConfigEnableNewMlabrpolicy {
return NO;
}
- (BOOL)iosPlayerClientSharedConfigPostponeCabrPreferredFormatFiltering {
return YES;
}
- (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:@{
UseVP9Key: @YES,
}];
if (!UseVP9()) return;
%init;
if (!IS_IOS_OR_NEWER(iOS_15_0)) {
%init(Spoofing);
}
}