mirror of
https://github.com/samsonjs/media.git
synced 2026-04-19 13:35:47 +00:00
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:
parent
2db9da5c1d
commit
21461abc1c
2 changed files with 4 additions and 0 deletions
|
|
@ -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.):
|
||||
|
|
|
|||
|
|
@ -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":
|
||||
|
|
|
|||
Loading…
Reference in a new issue