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
567d078e
authored
Aug 15, 2019
by
sofijajvc
Committed by
Andrew Lewis
Aug 15, 2019
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Fix createDecoder method declaration
PiperOrigin-RevId: 263534628
parent
6a122f47
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
extensions/vp9/src/main/java/com/google/android/exoplayer2/ext/vp9/LibvpxVideoRenderer.java
library/core/src/main/java/com/google/android/exoplayer2/video/SimpleDecoderVideoRenderer.java
extensions/vp9/src/main/java/com/google/android/exoplayer2/ext/vp9/LibvpxVideoRenderer.java
View file @
567d078e
...
...
@@ -228,7 +228,8 @@ public class LibvpxVideoRenderer extends SimpleDecoderVideoRenderer {
VideoDecoderInputBuffer
,
?
extends
VideoDecoderOutputBuffer
,
?
extends
VideoDecoderException
>
createDecoder
(
Format
format
,
ExoMediaCrypto
mediaCrypto
)
throws
VideoDecoderException
{
createDecoder
(
Format
format
,
@Nullable
ExoMediaCrypto
mediaCrypto
)
throws
VideoDecoderException
{
TraceUtil
.
beginSection
(
"createVpxDecoder"
);
int
initialInputBufferSize
=
format
.
maxInputSize
!=
Format
.
NO_VALUE
?
format
.
maxInputSize
:
DEFAULT_INPUT_BUFFER_SIZE
;
...
...
library/core/src/main/java/com/google/android/exoplayer2/video/SimpleDecoderVideoRenderer.java
View file @
567d078e
...
...
@@ -544,7 +544,8 @@ public abstract class SimpleDecoderVideoRenderer extends BaseRenderer {
VideoDecoderInputBuffer
,
?
extends
VideoDecoderOutputBuffer
,
?
extends
VideoDecoderException
>
createDecoder
(
Format
format
,
ExoMediaCrypto
mediaCrypto
)
throws
VideoDecoderException
;
createDecoder
(
Format
format
,
@Nullable
ExoMediaCrypto
mediaCrypto
)
throws
VideoDecoderException
;
/**
* Dequeues output buffer.
...
...
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