This commit is contained in:
inotia00
2023-05-06 02:23:04 +09:00
parent ba4c75dabc
commit 801c4cd4ac
4 changed files with 95 additions and 0 deletions

View File

@ -0,0 +1,20 @@
package app.revanced.patches.youtube.video.hdr.fingerprints
import app.revanced.patcher.extensions.or
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
import org.jf.dexlib2.AccessFlags
import org.jf.dexlib2.Opcode
object HdrCapabilitiesFingerprint : MethodFingerprint(
returnType = "V",
access = AccessFlags.PUBLIC or AccessFlags.FINAL,
parameters = listOf("L", "L"),
opcodes = listOf(
Opcode.INVOKE_VIRTUAL_RANGE,
Opcode.MOVE_RESULT,
Opcode.INVOKE_INTERFACE,
Opcode.MOVE_RESULT_OBJECT,
Opcode.INVOKE_VIRTUAL,
),
strings = listOf("av1_profile_main_10_hdr_10_plus_supported")
)

View File

@ -0,0 +1,68 @@
package app.revanced.patches.youtube.video.hdr.patch
import app.revanced.extensions.toErrorResult
import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.annotation.Version
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.data.toMethodWalker
import app.revanced.patcher.extensions.addInstructions
import app.revanced.patcher.extensions.instruction
import app.revanced.patcher.patch.BytecodePatch
import app.revanced.patcher.patch.PatchResult
import app.revanced.patcher.patch.PatchResultSuccess
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.patcher.util.smali.ExternalLabel
import app.revanced.patches.shared.annotation.YouTubeCompatibility
import app.revanced.patches.youtube.misc.settings.resource.patch.SettingsPatch
import app.revanced.patches.youtube.video.hdr.fingerprints.HdrCapabilitiesFingerprint
import app.revanced.util.integrations.Constants.VIDEO_PATH
@Patch
@Name("disable-hdr-video")
@Description("Disable HDR video.")
@DependsOn([SettingsPatch::class])
@YouTubeCompatibility
@Version("0.0.1")
class DisableHdrVideoPatch : BytecodePatch(
listOf(
HdrCapabilitiesFingerprint
)
) {
override fun execute(context: BytecodeContext): PatchResult {
HdrCapabilitiesFingerprint.result?.let {
with (context
.toMethodWalker(it.method)
.nextMethod(it.scanResult.patternScanResult!!.endIndex, true)
.getMethod() as MutableMethod
) {
addInstructions(
0,
"""
invoke-static {}, $VIDEO_PATH/HDRVideoPatch;->disableHDRVideo()Z
move-result v0
if-nez v0, :default
return v0
""", listOf(ExternalLabel("default", instruction(0)))
)
}
} ?: return HdrCapabilitiesFingerprint.toErrorResult()
/*
* Add settings
*/
SettingsPatch.addPreference(
arrayOf(
"PREFERENCE: VIDEO_SETTINGS",
"SETTINGS: DISABLE_HDR_VIDEO"
)
)
SettingsPatch.updatePatchStatus("disable-hdr-video")
return PatchResultSuccess()
}
}