| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
std::optional<std::vector<std::string>> codecs;is there any meaningful difference here between absence of value and an empty list?
"SCORE=9.5,CODECS=\"avc1.64001f\"",a test with more than one codec?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
std::optional<std::vector<std::string>> codecs;is there any meaningful difference here between absence of value and an empty list?
I can update the previous comment to be more clear, but basically, nullopt implies that the CODECS property is not present, while an empty vector means it's been declared empty: CODECS="".
I don't think we'd ever actually see that happen, but the spec allows it.
"SCORE=9.5,CODECS=\"avc1.64001f\"",a test with more than one codec?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
3 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: media/formats/hls/tags.h
Insertions: 1, Deletions: 1.
The diff is too large to show. Please review the diff.
```
Add parser for X-I-FRAME-STREAM-INF HLS tag
This is part of a series of changes to finish adding all the tags that
are specified in the HLS spec. They'll be added to the manifest parsers
in follow up CLs.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |