Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
b4873e55
authored
Dec 18, 2019
by
andrewlewis
Committed by
Oliver Woodman
Dec 18, 2019
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Fix keep rule for VideoDecoderOutputBuffer
PiperOrigin-RevId: 286156361
parent
c9109f43
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
RELEASENOTES.md
library/core/proguard-rules.txt
RELEASENOTES.md
View file @
b4873e55
...
...
@@ -11,6 +11,8 @@
(
[
#6771
](
https://github.com/google/ExoPlayer/issues/6771
)
).
*
Fix proguard rules for R8 to ensure raw resources used with
`RawResourceDataSource`
are kept.
*
Fix proguard rules to keep
`VideoDecoderOutputBuffer`
for video decoder
extensions.
### 2.11.0 (2019-12-11) ###
...
...
library/core/proguard-rules.txt
View file @
b4873e55
...
...
@@ -5,6 +5,11 @@
public static android.net.Uri buildRawResourceUri(int);
}
# Some members of this class are being accessed from native methods. Keep them unobfuscated.
-keep class com.google.android.exoplayer2.video.VideoDecoderOutputBuffer {
*;
}
# Constructors accessed via reflection in DefaultRenderersFactory
-dontnote com.google.android.exoplayer2.ext.vp9.LibvpxVideoRenderer
-keepclassmembers class com.google.android.exoplayer2.ext.vp9.LibvpxVideoRenderer {
...
...
@@ -71,8 +76,3 @@
-dontwarn org.checkerframework.**
-dontwarn kotlin.annotations.jvm.**
-dontwarn javax.annotation.**
# Some members of this class are being accessed from native methods. Keep them unobfuscated.
-keep class com.google.android.exoplayer2.ext.video.VideoDecoderOutputBuffer {
*;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment