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
2b1c2171
authored
Nov 11, 2019
by
andrewlewis
Committed by
Oliver Woodman
Nov 17, 2019
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Handle new signaling for E-AC3 JOC in DASH
Issue: #6636 PiperOrigin-RevId: 279666771
parent
ed6eb3aa
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
RELEASENOTES.md
library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/DashManifestParser.java
RELEASENOTES.md
View file @
2b1c2171
# Release notes #
# Release notes #
### 2.10.8 (2019-11-18) ###
*
Handle new signaling for E-AC3 JOC audio in DASH
(
[
#6636
](
https://github.com/google/ExoPlayer/issues/6636
)
).
### 2.10.7 (2019-11-12) ###
### 2.10.7 (2019-11-12) ###
*
HLS: Fix detection of Dolby Atmos to match the HLS authoring specification.
*
HLS: Fix detection of Dolby Atmos to match the HLS authoring specification.
...
...
library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/DashManifestParser.java
View file @
2b1c2171
...
@@ -1417,8 +1417,10 @@ public class DashManifestParser extends DefaultHandler
...
@@ -1417,8 +1417,10 @@ public class DashManifestParser extends DefaultHandler
for
(
int
i
=
0
;
i
<
supplementalProperties
.
size
();
i
++)
{
for
(
int
i
=
0
;
i
<
supplementalProperties
.
size
();
i
++)
{
Descriptor
descriptor
=
supplementalProperties
.
get
(
i
);
Descriptor
descriptor
=
supplementalProperties
.
get
(
i
);
String
schemeIdUri
=
descriptor
.
schemeIdUri
;
String
schemeIdUri
=
descriptor
.
schemeIdUri
;
if
(
"tag:dolby.com,2014:dash:DolbyDigitalPlusExtensionType:2014"
.
equals
(
schemeIdUri
)
if
((
"tag:dolby.com,2018:dash:EC3_ExtensionComplexityIndex:2018"
.
equals
(
schemeIdUri
)
&&
"ec+3"
.
equals
(
descriptor
.
value
))
{
&&
"JOC"
.
equals
(
descriptor
.
value
))
||
(
"tag:dolby.com,2014:dash:DolbyDigitalPlusExtensionType:2014"
.
equals
(
schemeIdUri
)
&&
"ec+3"
.
equals
(
descriptor
.
value
)))
{
return
MimeTypes
.
AUDIO_E_AC3_JOC
;
return
MimeTypes
.
AUDIO_E_AC3_JOC
;
}
}
}
}
...
...
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