Chromium Code Reviews| Index: media/formats/mp4/box_definitions.cc |
| diff --git a/media/formats/mp4/box_definitions.cc b/media/formats/mp4/box_definitions.cc |
| index a95c78f9d163da7dbd052c74b3690b25cb46e7a3..f425fa9f8c6a0f163bf7150184f48fc87241b721 100644 |
| --- a/media/formats/mp4/box_definitions.cc |
| +++ b/media/formats/mp4/box_definitions.cc |
| @@ -461,6 +461,9 @@ bool HandlerReference::Parse(BoxReader* reader) { |
| type = kVideo; |
| } else if (hdlr_type == FOURCC_SOUN) { |
| type = kAudio; |
| + } else if (hdlr_type == FOURCC_META || hdlr_type == FOURCC_SUBT || |
|
wolenetz
2016/03/23 01:45:50
Note, this follows the logic in https://dev.w3.org
chcunningham
2016/03/23 23:05:56
Acknowledged.
|
| + hdlr_type == FOURCC_TEXT) { |
| + type = kText; |
| } else { |
| type = kInvalid; |
| } |