generated from ReVanced/revanced-patches-template
-
-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Sync for Reddit): Add
Fix video downloads
patch (#3739)
Co-authored-by: oSumAtrIX <[email protected]>
- Loading branch information
Showing
3 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
...p/revanced/patches/reddit/customclients/syncforreddit/fix/video/FixVideoDownloadsPatch.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
package app.revanced.patches.reddit.customclients.syncforreddit.fix.video | ||
|
||
import app.revanced.patcher.data.BytecodeContext | ||
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions | ||
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction | ||
import app.revanced.patcher.patch.BytecodePatch | ||
import app.revanced.patcher.patch.annotation.CompatiblePackage | ||
import app.revanced.patcher.patch.annotation.Patch | ||
import app.revanced.patches.reddit.customclients.syncforreddit.fix.video.fingerprints.ParseRedditVideoNetworkResponseFingerprint | ||
import app.revanced.util.resultOrThrow | ||
import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction35c | ||
|
||
@Patch( | ||
name = "Fix video downloads", | ||
description = "Fixes a bug in Sync's MPD parser resulting in only the audio-track being saved.", | ||
compatiblePackages = [ | ||
CompatiblePackage("com.laurencedawson.reddit_sync"), | ||
CompatiblePackage("com.laurencedawson.reddit_sync.pro"), | ||
CompatiblePackage("com.laurencedawson.reddit_sync.dev"), | ||
], | ||
requiresIntegrations = true, | ||
) | ||
@Suppress("unused") | ||
object FixVideoDownloadsPatch : BytecodePatch( | ||
fingerprints = setOf(ParseRedditVideoNetworkResponseFingerprint), | ||
) { | ||
private const val INTEGRATIONS_CLASS_DESCRIPTOR = | ||
"Lapp/revanced/integrations/syncforreddit/FixRedditVideoDownloadPatch;" | ||
private const val GET_LINKS_METHOD = "getLinks([B)[Ljava/lang/String;" | ||
|
||
override fun execute(context: BytecodeContext) { | ||
ParseRedditVideoNetworkResponseFingerprint.resultOrThrow().let { | ||
val scanResult = it.scanResult.patternScanResult!! | ||
val newInstanceIndex = scanResult.startIndex | ||
val invokeDirectIndex = scanResult.endIndex - 1 | ||
|
||
val buildResponseInstruction = it.mutableMethod.getInstruction<Instruction35c>(invokeDirectIndex) | ||
|
||
it.mutableMethod.addInstructions( | ||
newInstanceIndex + 1, | ||
""" | ||
# Get byte array from response. | ||
iget-object v2, p1, Lcom/android/volley/NetworkResponse;->data:[B | ||
# Parse the videoUrl and audioUrl from the byte array. | ||
invoke-static { v2 }, $INTEGRATIONS_CLASS_DESCRIPTOR->$GET_LINKS_METHOD | ||
move-result-object v2 | ||
# Get videoUrl (Index 0). | ||
const/4 v5, 0x0 | ||
aget-object v${buildResponseInstruction.registerE}, v2, v5 | ||
# Get audioUrl (Index 1). | ||
const/4 v6, 0x1 | ||
aget-object v${buildResponseInstruction.registerF}, v2, v6 | ||
# Register E and F are used to build the response. | ||
""", | ||
) | ||
} | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
...lients/syncforreddit/fix/video/fingerprints/ParseRedditVideoNetworkResponseFingerprint.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package app.revanced.patches.reddit.customclients.syncforreddit.fix.video.fingerprints | ||
|
||
import app.revanced.patcher.fingerprint.MethodFingerprint | ||
import com.android.tools.smali.dexlib2.Opcode | ||
|
||
internal object ParseRedditVideoNetworkResponseFingerprint : MethodFingerprint( | ||
opcodes = listOf( | ||
Opcode.NEW_INSTANCE, | ||
Opcode.IGET_OBJECT, | ||
Opcode.INVOKE_DIRECT, | ||
Opcode.CONST_WIDE_32 | ||
), | ||
customFingerprint = { methodDef, classDef -> | ||
classDef.sourceFile == "RedditVideoRequest.java" && methodDef.name == "parseNetworkResponse" | ||
} | ||
) |