Parse "f800" as channel count of 5 for Dolby in DASH manifest

Issue: androidx/media#688
PiperOrigin-RevId: 581908905
(cherry picked from commit 79711ebd3f)
This commit is contained in:
tianyifeng 2023-11-13 03:57:27 -08:00 committed by microkatz
parent 2db9da5c1d
commit 21461abc1c
2 changed files with 4 additions and 0 deletions

View file

@ -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.):

View file

@ -2020,6 +2020,8 @@ public class DashManifestParser extends DefaultHandler
return 1;
case "a000":
return 2;
case "f800":
return 5;
case "f801":
return 6;
case "fa01":