mirror of
https://github.com/samsonjs/media.git
synced 2026-04-06 11:25:46 +00:00
Add proguard config for VP9 extension
This commit is contained in:
parent
a6bfe02d24
commit
9925f8f9b8
1 changed files with 11 additions and 0 deletions
11
extensions/vp9/src/main/proguard.cfg
Normal file
11
extensions/vp9/src/main/proguard.cfg
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# Proguard rules specific to the VP9 extension.
|
||||
|
||||
# This prevents the names of native methods from being obfuscated.
|
||||
-keepclasseswithmembernames class * {
|
||||
native <methods>;
|
||||
}
|
||||
|
||||
# Some members of this class are being accessed from native methods. Keep them unobfuscated.
|
||||
-keep class com.google.android.exoplayer.ext.vp9.VpxDecoderWrapper$OutputBuffer {
|
||||
*;
|
||||
}
|
||||
Loading…
Reference in a new issue