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
67990979
authored
Jun 21, 2019
by
Andrew Lewis
Committed by
GitHub
Jun 21, 2019
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Fix decoder fallback for E-AC3 JOC to E-AC3
Issue: #6073
parent
c8955ed5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
library/core/src/main/java/com/google/android/exoplayer2/mediacodec/MediaCodecUtil.java
library/core/src/main/java/com/google/android/exoplayer2/mediacodec/MediaCodecUtil.java
View file @
67990979
...
@@ -176,7 +176,7 @@ public final class MediaCodecUtil {
...
@@ -176,7 +176,7 @@ public final class MediaCodecUtil {
// E-AC3 decoders can decode JOC streams, but in 2-D rather than 3-D.
// E-AC3 decoders can decode JOC streams, but in 2-D rather than 3-D.
CodecKey
eac3Key
=
new
CodecKey
(
MimeTypes
.
AUDIO_E_AC3
,
key
.
secure
,
key
.
tunneling
);
CodecKey
eac3Key
=
new
CodecKey
(
MimeTypes
.
AUDIO_E_AC3
,
key
.
secure
,
key
.
tunneling
);
ArrayList
<
MediaCodecInfo
>
eac3DecoderInfos
=
ArrayList
<
MediaCodecInfo
>
eac3DecoderInfos
=
getDecoderInfosInternal
(
eac3Key
,
mediaCodecList
,
mimeType
);
getDecoderInfosInternal
(
eac3Key
,
mediaCodecList
,
MimeTypes
.
AUDIO_E_AC3
);
decoderInfos
.
addAll
(
eac3DecoderInfos
);
decoderInfos
.
addAll
(
eac3DecoderInfos
);
}
}
applyWorkarounds
(
mimeType
,
decoderInfos
);
applyWorkarounds
(
mimeType
,
decoderInfos
);
...
...
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