Skip to content

Commit

Permalink
Parse "f800" as channel count of 5 for Dolby in DASH manifest
Browse files Browse the repository at this point in the history
Issue: #688
PiperOrigin-RevId: 581908905
  • Loading branch information
tianyif authored and Copybara-Service committed Nov 13, 2023
1 parent 7014bc6 commit 79711eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@
* Extend experimental support for parsing subtitles during extraction to
work with standalone text files (previously it only worked with
subtitles muxed into MP4 segments).
* Parse "f800" as channel count of 5 for Dolby in DASH manifest
([#688](https://github.com/androidx/media/issues/688)).
* Smooth Streaming Extension:
* RTSP Extension:
* Decoder Extensions (FFmpeg, VP9, AV1, MIDI, etc.):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2020,6 +2020,8 @@ protected static int parseDolbyChannelConfiguration(XmlPullParser xpp) {
return 1;
case "a000":
return 2;
case "f800":
return 5;
case "f801":
return 6;
case "fa01":
Expand Down

0 comments on commit 79711eb

Please sign in to comment.