mirror of
https://github.com/androidx/media.git
synced 2025-04-29 22:36:54 +08:00

Imported from GitHub PR https://github.com/androidx/media/pull/1826 Merge 6b59a1602b022ebc44411ae3440e274c51c223a7 into b5615d5e919b297def6450b45320a3165c34548c COPYBARA_INTEGRATE_REVIEW=https://github.com/androidx/media/pull/1826 from androidx:mpegh_extension 6b59a1602b022ebc44411ae3440e274c51c223a7 PiperOrigin-RevId: 689417378
14 lines
400 B
Plaintext
14 lines
400 B
Plaintext
# Proguard rules specific to the MPEG-H 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 androidx.media3.decoder.SimpleDecoderOutputBuffer {
|
|
*;
|
|
}
|
|
|
|
-keep class androidx.media3.decoder.mpegh** { *; }
|