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
(cherry picked from commit 79711eb)
  • Loading branch information
tianyif authored and microkatz committed Jan 8, 2024
1 parent 2db9da5 commit 21461ab
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 @@ -31,6 +31,8 @@
* RTMP Extension:
* HLS Extension:
* DASH Extension:
* 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 21461ab

Please sign in to comment.