Add proguard config for VP9 extension

This commit is contained in:
Oliver Woodman 2015-11-27 18:09:56 +00:00
parent a6bfe02d24
commit 9925f8f9b8

View 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 {
*;
}