fix: hrd-auto-brightness
(#152)
This commit is contained in:
parent
b65d7af704
commit
5f2e9ba30b
|
@ -5,7 +5,7 @@ import app.revanced.patcher.annotation.Package
|
||||||
|
|
||||||
@Compatibility(
|
@Compatibility(
|
||||||
[Package(
|
[Package(
|
||||||
"com.google.android.youtube", arrayOf("17.24.34", "17.24.35", "17.25.34", "17.26.35")
|
"com.google.android.youtube", arrayOf("17.25.34", "17.26.35")
|
||||||
)]
|
)]
|
||||||
)
|
)
|
||||||
@Target(AnnotationTarget.CLASS)
|
@Target(AnnotationTarget.CLASS)
|
||||||
|
|
|
@ -11,25 +11,34 @@ import org.jf.dexlib2.AccessFlags
|
||||||
import org.jf.dexlib2.Opcode
|
import org.jf.dexlib2.Opcode
|
||||||
import org.jf.dexlib2.iface.instruction.NarrowLiteralInstruction
|
import org.jf.dexlib2.iface.instruction.NarrowLiteralInstruction
|
||||||
|
|
||||||
@Name("hdrbrightness-fingerprint")
|
@Name("hdr-brightness-fingerprint-ghz")
|
||||||
@MatchingMethod(
|
@MatchingMethod(
|
||||||
"Lghz;", "mZ"
|
"Lghz;", "g"
|
||||||
)
|
)
|
||||||
@FuzzyPatternScanMethod(3)
|
@FuzzyPatternScanMethod(3)
|
||||||
@HDRBrightnessCompatibility
|
@HDRBrightnessCompatibility
|
||||||
@Version("0.0.1")
|
@Version("0.0.1")
|
||||||
object HDRBrightnessFingerprint : MethodFingerprint(
|
object HDRBrightnessFingerprintGHZ : MethodFingerprint(
|
||||||
"V", AccessFlags.PUBLIC or AccessFlags.FINAL, null,
|
"V", AccessFlags.PUBLIC or AccessFlags.FINAL, null,
|
||||||
listOf(
|
listOf(
|
||||||
|
/* WindowManager.LayoutParams lp = br.getWindow().getAttributes();
|
||||||
|
* lp.screenBrightness = WindowManager.LayoutParams.BRIGHTNESS_OVERRIDE_FULL;
|
||||||
|
* br.getWindow().setAttributes(lp);
|
||||||
|
*/
|
||||||
|
Opcode.INVOKE_VIRTUAL,
|
||||||
Opcode.MOVE_RESULT_OBJECT,
|
Opcode.MOVE_RESULT_OBJECT,
|
||||||
Opcode.INVOKE_VIRTUAL,
|
Opcode.INVOKE_VIRTUAL,
|
||||||
Opcode.MOVE_RESULT_OBJECT,
|
Opcode.MOVE_RESULT_OBJECT,
|
||||||
Opcode.CONST_HIGH16,
|
Opcode.CONST_HIGH16,
|
||||||
Opcode.IPUT,
|
Opcode.IPUT,
|
||||||
|
Opcode.INVOKE_VIRTUAL,
|
||||||
|
Opcode.MOVE_RESULT_OBJECT,
|
||||||
Opcode.INVOKE_VIRTUAL
|
Opcode.INVOKE_VIRTUAL
|
||||||
),
|
),
|
||||||
null,
|
null,
|
||||||
customFingerprint = { methodDef ->
|
customFingerprint = { methodDef ->
|
||||||
methodDef.implementation!!.instructions.count() == 16 && methodDef.implementation!!.instructions.any {((it as? NarrowLiteralInstruction)?.narrowLiteral == (-1.0f).toRawBits())}
|
methodDef.implementation!!.instructions.count() == 16 && methodDef.implementation!!.instructions.any {
|
||||||
|
((it as? NarrowLiteralInstruction)?.narrowLiteral == (/*BRIGHTNESS_OVERRIDE_FULL*/ 1.0f).toRawBits())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
)
|
)
|
|
@ -0,0 +1,44 @@
|
||||||
|
package app.revanced.patches.youtube.misc.hdrbrightness.fingerprints
|
||||||
|
|
||||||
|
import app.revanced.patcher.annotation.Name
|
||||||
|
import app.revanced.patcher.annotation.Version
|
||||||
|
import app.revanced.patcher.extensions.or
|
||||||
|
import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
|
||||||
|
import app.revanced.patcher.fingerprint.method.annotation.MatchingMethod
|
||||||
|
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
|
||||||
|
import app.revanced.patches.youtube.misc.hdrbrightness.annotations.HDRBrightnessCompatibility
|
||||||
|
import org.jf.dexlib2.AccessFlags
|
||||||
|
import org.jf.dexlib2.Opcode
|
||||||
|
import org.jf.dexlib2.iface.instruction.NarrowLiteralInstruction
|
||||||
|
|
||||||
|
@Name("hdr-brightness-fingerprint-gul")
|
||||||
|
@MatchingMethod(
|
||||||
|
"Lgul;", "g"
|
||||||
|
)
|
||||||
|
@FuzzyPatternScanMethod(3)
|
||||||
|
@HDRBrightnessCompatibility
|
||||||
|
@Version("0.0.1")
|
||||||
|
object HDRBrightnessFingerprintGUL : MethodFingerprint(
|
||||||
|
"V", AccessFlags.PUBLIC or AccessFlags.FINAL, null,
|
||||||
|
listOf(
|
||||||
|
/* WindowManager.LayoutParams lp = br.getWindow().getAttributes();
|
||||||
|
* lp.screenBrightness = WindowManager.LayoutParams.BRIGHTNESS_OVERRIDE_FULL;
|
||||||
|
* br.getWindow().setAttributes(lp);
|
||||||
|
*/
|
||||||
|
Opcode.INVOKE_VIRTUAL,
|
||||||
|
Opcode.MOVE_RESULT_OBJECT,
|
||||||
|
Opcode.INVOKE_VIRTUAL,
|
||||||
|
Opcode.MOVE_RESULT_OBJECT,
|
||||||
|
Opcode.CONST_HIGH16,
|
||||||
|
Opcode.IPUT,
|
||||||
|
//Opcode.INVOKE_VIRTUAL,
|
||||||
|
//Opcode.MOVE_RESULT_OBJECT,
|
||||||
|
//Opcode.INVOKE_VIRTUAL
|
||||||
|
),
|
||||||
|
null,
|
||||||
|
customFingerprint = { methodDef ->
|
||||||
|
methodDef.implementation!!.instructions.count() == 14 && methodDef.implementation!!.instructions.any {
|
||||||
|
((it as? NarrowLiteralInstruction)?.narrowLiteral == (/*BRIGHTNESS_OVERRIDE_FULL*/ 1.0f).toRawBits())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
|
@ -0,0 +1,44 @@
|
||||||
|
package app.revanced.patches.youtube.misc.hdrbrightness.fingerprints
|
||||||
|
|
||||||
|
import app.revanced.patcher.annotation.Name
|
||||||
|
import app.revanced.patcher.annotation.Version
|
||||||
|
import app.revanced.patcher.extensions.or
|
||||||
|
import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
|
||||||
|
import app.revanced.patcher.fingerprint.method.annotation.MatchingMethod
|
||||||
|
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
|
||||||
|
import app.revanced.patches.youtube.misc.hdrbrightness.annotations.HDRBrightnessCompatibility
|
||||||
|
import org.jf.dexlib2.AccessFlags
|
||||||
|
import org.jf.dexlib2.Opcode
|
||||||
|
import org.jf.dexlib2.iface.instruction.NarrowLiteralInstruction
|
||||||
|
|
||||||
|
@Name("hdr-brightness-fingerprint-tio")
|
||||||
|
@MatchingMethod(
|
||||||
|
"Ltio;", "g"
|
||||||
|
)
|
||||||
|
@FuzzyPatternScanMethod(3)
|
||||||
|
@HDRBrightnessCompatibility
|
||||||
|
@Version("0.0.1")
|
||||||
|
object HDRBrightnessFingerprintTIO : MethodFingerprint(
|
||||||
|
"V", AccessFlags.PUBLIC or AccessFlags.FINAL, null,
|
||||||
|
listOf(
|
||||||
|
/* WindowManager.LayoutParams lp = br.getWindow().getAttributes();
|
||||||
|
* lp.screenBrightness = WindowManager.LayoutParams.BRIGHTNESS_OVERRIDE_FULL;
|
||||||
|
* br.getWindow().setAttributes(lp);
|
||||||
|
*/
|
||||||
|
Opcode.INVOKE_VIRTUAL,
|
||||||
|
Opcode.MOVE_RESULT_OBJECT,
|
||||||
|
Opcode.INVOKE_VIRTUAL,
|
||||||
|
Opcode.MOVE_RESULT_OBJECT,
|
||||||
|
Opcode.CONST_HIGH16,
|
||||||
|
Opcode.IPUT,
|
||||||
|
//Opcode.INVOKE_VIRTUAL,
|
||||||
|
//Opcode.MOVE_RESULT_OBJECT,
|
||||||
|
//Opcode.INVOKE_VIRTUAL
|
||||||
|
),
|
||||||
|
null,
|
||||||
|
customFingerprint = { methodDef ->
|
||||||
|
methodDef.implementation!!.instructions.count() == 22 && methodDef.implementation!!.instructions.any {
|
||||||
|
((it as? NarrowLiteralInstruction)?.narrowLiteral == (/*BRIGHTNESS_OVERRIDE_FULL*/ 1.0f).toRawBits())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
|
@ -0,0 +1,44 @@
|
||||||
|
package app.revanced.patches.youtube.misc.hdrbrightness.fingerprints
|
||||||
|
|
||||||
|
import app.revanced.patcher.annotation.Name
|
||||||
|
import app.revanced.patcher.annotation.Version
|
||||||
|
import app.revanced.patcher.extensions.or
|
||||||
|
import app.revanced.patcher.fingerprint.method.annotation.FuzzyPatternScanMethod
|
||||||
|
import app.revanced.patcher.fingerprint.method.annotation.MatchingMethod
|
||||||
|
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
|
||||||
|
import app.revanced.patches.youtube.misc.hdrbrightness.annotations.HDRBrightnessCompatibility
|
||||||
|
import org.jf.dexlib2.AccessFlags
|
||||||
|
import org.jf.dexlib2.Opcode
|
||||||
|
import org.jf.dexlib2.iface.instruction.ReferenceInstruction
|
||||||
|
import org.jf.dexlib2.iface.reference.FieldReference
|
||||||
|
|
||||||
|
@Name("hdr-brightness-fingerprint-xxz")
|
||||||
|
@MatchingMethod(
|
||||||
|
"Lxxz;", "G"
|
||||||
|
)
|
||||||
|
@FuzzyPatternScanMethod(3)
|
||||||
|
@HDRBrightnessCompatibility
|
||||||
|
@Version("0.0.1")
|
||||||
|
object HDRBrightnessFingerprintXXZ : MethodFingerprint(
|
||||||
|
"V", AccessFlags.PUBLIC or AccessFlags.FINAL,
|
||||||
|
listOf("I", "I", "I", "I"),
|
||||||
|
listOf(
|
||||||
|
Opcode.SGET_OBJECT,
|
||||||
|
Opcode.IGET_OBJECT,
|
||||||
|
Opcode.INVOKE_VIRTUAL,
|
||||||
|
Opcode.MOVE_RESULT_OBJECT,
|
||||||
|
Opcode.IGET,
|
||||||
|
Opcode.IPUT,
|
||||||
|
Opcode.IGET_OBJECT,
|
||||||
|
Opcode.INVOKE_VIRTUAL
|
||||||
|
),
|
||||||
|
null,
|
||||||
|
customFingerprint = { methodDef ->
|
||||||
|
methodDef.implementation!!.instructions.any {
|
||||||
|
((it as? ReferenceInstruction)?.reference as? FieldReference)?.let { field ->
|
||||||
|
// iput vx, vy, Landroid/view/WindowManager$LayoutParams;->screenBrightness:F
|
||||||
|
field.definingClass == "Landroid/view/WindowManager\$LayoutParams;" && field.name == "screenBrightness"
|
||||||
|
} == true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
|
@ -8,41 +8,49 @@ import app.revanced.patcher.extensions.addInstructions
|
||||||
import app.revanced.patcher.patch.PatchResult
|
import app.revanced.patcher.patch.PatchResult
|
||||||
import app.revanced.patcher.patch.PatchResultError
|
import app.revanced.patcher.patch.PatchResultError
|
||||||
import app.revanced.patcher.patch.PatchResultSuccess
|
import app.revanced.patcher.patch.PatchResultSuccess
|
||||||
|
import app.revanced.patcher.patch.annotations.Dependencies
|
||||||
import app.revanced.patcher.patch.annotations.Patch
|
import app.revanced.patcher.patch.annotations.Patch
|
||||||
import app.revanced.patcher.patch.impl.BytecodePatch
|
import app.revanced.patcher.patch.impl.BytecodePatch
|
||||||
import app.revanced.patches.youtube.misc.hdrbrightness.annotations.HDRBrightnessCompatibility
|
import app.revanced.patches.youtube.misc.hdrbrightness.annotations.HDRBrightnessCompatibility
|
||||||
import app.revanced.patches.youtube.misc.hdrbrightness.fingerprints.HDRBrightnessFingerprint
|
import app.revanced.patches.youtube.misc.hdrbrightness.fingerprints.HDRBrightnessFingerprintXXZ
|
||||||
import org.jf.dexlib2.iface.instruction.NarrowLiteralInstruction
|
import app.revanced.patches.youtube.misc.integrations.patch.IntegrationsPatch
|
||||||
import org.jf.dexlib2.iface.instruction.OneRegisterInstruction
|
import org.jf.dexlib2.iface.instruction.ReferenceInstruction
|
||||||
|
import org.jf.dexlib2.iface.instruction.TwoRegisterInstruction
|
||||||
|
import org.jf.dexlib2.iface.reference.FieldReference
|
||||||
|
|
||||||
@Patch
|
@Patch(false)
|
||||||
@Name("hdr-max-brightness")
|
@Name("hdr-auto-brightness")
|
||||||
@Description("Sets brightness to max for HDR videos in fullscreen mode.")
|
@Description("Makes the brightness of HDR videos follow the system default.")
|
||||||
@HDRBrightnessCompatibility
|
@HDRBrightnessCompatibility
|
||||||
@Version("0.0.1")
|
@Version("0.0.2")
|
||||||
|
@Dependencies([IntegrationsPatch::class])
|
||||||
class HDRBrightnessPatch : BytecodePatch(
|
class HDRBrightnessPatch : BytecodePatch(
|
||||||
listOf(
|
listOf(
|
||||||
HDRBrightnessFingerprint
|
HDRBrightnessFingerprintXXZ
|
||||||
)
|
)
|
||||||
) {
|
) {
|
||||||
override fun execute(data: BytecodeData): PatchResult {
|
override fun execute(data: BytecodeData): PatchResult {
|
||||||
val result = HDRBrightnessFingerprint.result
|
val method = HDRBrightnessFingerprintXXZ.result?.mutableMethod
|
||||||
?: return PatchResultError("HDRBrightnessFingerprint could not resolve the method!")
|
?: return PatchResultError("HDRBrightnessFingerprint could not resolve the method!")
|
||||||
|
|
||||||
|
method.implementation!!.instructions.filter {
|
||||||
|
((it as? ReferenceInstruction)?.reference as? FieldReference)?.let { field ->
|
||||||
|
// iput vx, vy, Landroid/view/WindowManager$LayoutParams;->screenBrightness:F
|
||||||
|
field.definingClass == "Landroid/view/WindowManager\$LayoutParams;" && field.name == "screenBrightness"
|
||||||
|
} == true
|
||||||
|
}.forEach { instruction ->
|
||||||
|
// inject right before the call that sets 'screenBrightness'
|
||||||
|
val index = method.implementation!!.instructions.indexOf(instruction)
|
||||||
|
val register = (instruction as TwoRegisterInstruction).registerA
|
||||||
|
|
||||||
val method = result.mutableMethod
|
// inject the call to
|
||||||
|
|
||||||
//Get the index here, so we know where to inject our code to override -1.0f
|
|
||||||
val index = method.implementation!!.instructions.indexOfFirst { ((it as? NarrowLiteralInstruction)?.narrowLiteral == (-1.0f).toRawBits()) }
|
|
||||||
val register = (method.implementation!!.instructions.get(index) as OneRegisterInstruction).registerA
|
|
||||||
|
|
||||||
method.addInstructions(
|
method.addInstructions(
|
||||||
index + 1, """
|
index, """
|
||||||
invoke-static {v$register}, Lapp/revanced/integrations/patches/HDRMaxBrightnessPatch;->getHDRBrightness(F)F
|
invoke-static {v$register}, Lapp/revanced/integrations/patches/HDRMaxBrightnessPatch;->getHDRBrightness(F)F
|
||||||
move-result v$register
|
move-result v$register
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
|
}
|
||||||
return PatchResultSuccess()
|
return PatchResultSuccess()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue