Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(518)

Side by Side Diff: media/webm/webm_webvtt_parser.h

Issue 13419002: Media Source dispatches inband text tracks (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MEDIA_WEBM_WEBM_WEBVTT_PARSER_H_
6 #define MEDIA_WEBM_WEBM_WEBVTT_PARSER_H_
7
8 #include <string>
9
10 #include "base/basictypes.h"
11 #include "media/base/media_export.h"
12
13 namespace media {
14
15 class MEDIA_EXPORT WebMWebVTTParser {
16 public:
17 // Utility function to parse the WebVTT cue from a byte stream.
18 static void Parse(const uint8* payload, int payload_size,
19 std::string* id,
20 std::string* settings,
21 std::string* content);
22
23 private:
24 // The payload is the embedded WebVTT cue, stored in a WebM block.
25 // The parser treats this as a UTF-8 byte stream.
26 WebMWebVTTParser(const uint8* payload, int payload_size);
27
28 // Parse the cue identifier, settings, and content from the stream.
29 void Parse(std::string* id, std::string* settings, std::string* content);
30 // Remove a byte from the stream, advancing the stream pointer.
31 // Returns true if a character was returned; false means "end of stream".
32 bool GetByte(uint8* byte);
33
34 // Backup the stream pointer.
35 void UngetByte();
36
37 // Parse a line of text from the stream.
38 void ParseLine(std::string* line);
39
40 // Represents the portion of the stream that has not been consumed yet.
41 const uint8* ptr_;
42 const uint8* const ptr_end_;
43
44 DISALLOW_COPY_AND_ASSIGN(WebMWebVTTParser);
45 };
46
47 } // namespace media
48
49 #endif // MEDIA_WEBM_WEBM_WEBVTT_PARSER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698