mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Parse "f800" as channel count of 5 for Dolby in DASH manifest
Issue: androidx/media#688 PiperOrigin-RevId: 581908905
This commit is contained in:
parent
7014bc6bf4
commit
79711ebd3f
2 changed files with 4 additions and 0 deletions
|
|
@ -63,6 +63,8 @@
|
||||||
* Extend experimental support for parsing subtitles during extraction to
|
* Extend experimental support for parsing subtitles during extraction to
|
||||||
work with standalone text files (previously it only worked with
|
work with standalone text files (previously it only worked with
|
||||||
subtitles muxed into MP4 segments).
|
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:
|
* Smooth Streaming Extension:
|
||||||
* RTSP Extension:
|
* RTSP Extension:
|
||||||
* Decoder Extensions (FFmpeg, VP9, AV1, MIDI, etc.):
|
* Decoder Extensions (FFmpeg, VP9, AV1, MIDI, etc.):
|
||||||
|
|
|
||||||
|
|
@ -2020,6 +2020,8 @@ public class DashManifestParser extends DefaultHandler
|
||||||
return 1;
|
return 1;
|
||||||
case "a000":
|
case "a000":
|
||||||
return 2;
|
return 2;
|
||||||
|
case "f800":
|
||||||
|
return 5;
|
||||||
case "f801":
|
case "f801":
|
||||||
return 6;
|
return 6;
|
||||||
case "fa01":
|
case "fa01":
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue