Index: media/base/stream_parser_buffer.h |
diff --git a/media/base/stream_parser_buffer.h b/media/base/stream_parser_buffer.h |
index 44ca1abed2c58577c1f52049cd94ab6b3cdfe1b5..146e78a3dcffc981a9d81e3b610a7fa1f83c9a10 100644 |
--- a/media/base/stream_parser_buffer.h |
+++ b/media/base/stream_parser_buffer.h |
@@ -6,7 +6,9 @@ |
#define MEDIA_BASE_STREAM_PARSER_BUFFER_H_ |
#include "media/base/decoder_buffer.h" |
+#include "media/base/demuxer_stream.h" |
#include "media/base/media_export.h" |
+#include "media/base/stream_parser.h" |
namespace media { |
@@ -15,12 +17,17 @@ class MEDIA_EXPORT StreamParserBuffer : public DecoderBuffer { |
// Value used to signal an invalid decoder config ID. |
enum { kInvalidConfigId = -1 }; |
+ typedef DemuxerStream::Type Type; |
+ typedef StreamParser::TrackId TrackId; |
+ |
static scoped_refptr<StreamParserBuffer> CreateEOSBuffer(); |
static scoped_refptr<StreamParserBuffer> CopyFrom( |
- const uint8* data, int data_size, bool is_keyframe); |
+ const uint8* data, int data_size, bool is_keyframe, Type type, |
+ TrackId track_id); |
static scoped_refptr<StreamParserBuffer> CopyFrom( |
const uint8* data, int data_size, |
- const uint8* side_data, int side_data_size, bool is_keyframe); |
+ const uint8* side_data, int side_data_size, bool is_keyframe, Type type, |
+ TrackId track_id); |
bool IsKeyframe() const { return is_keyframe_; } |
// Decode timestamp. If not explicitly set, or set to kNoTimestamp(), the |
@@ -28,11 +35,18 @@ class MEDIA_EXPORT StreamParserBuffer : public DecoderBuffer { |
base::TimeDelta GetDecodeTimestamp() const; |
void SetDecodeTimestamp(const base::TimeDelta& timestamp); |
- // Gets/sets the ID of the decoder config associated with this |
- // buffer. |
+ // Gets/sets the ID of the decoder config associated with this buffer. |
int GetConfigId() const; |
void SetConfigId(int config_id); |
+ // Gets the parser's media type associated with this buffer. Value is |
+ // meaningless for EOS buffers. |
+ Type type() const { return type_; } |
+ |
+ // Gets the parser's track ID associated with this buffer. Value is |
+ // meaningless for EOS buffers. |
+ TrackId track_id() const { return track_id_; } |
+ |
// Buffers to be exhausted before using the data in this DecoderBuffer. Used |
// to implement the Audio Splice Frame Algorithm per the MSE specification. |
const std::vector<scoped_refptr<StreamParserBuffer> >& GetFadeOutPreroll() |
@@ -43,12 +57,16 @@ class MEDIA_EXPORT StreamParserBuffer : public DecoderBuffer { |
private: |
StreamParserBuffer(const uint8* data, int data_size, |
const uint8* side_data, int side_data_size, |
- bool is_keyframe); |
+ bool is_keyframe, Type type, |
+ TrackId track_id); |
virtual ~StreamParserBuffer(); |
bool is_keyframe_; |
base::TimeDelta decode_timestamp_; |
int config_id_; |
+ Type type_; |
+ TrackId track_id_; |
+ |
std::vector<scoped_refptr<StreamParserBuffer> > fade_out_preroll_; |
DISALLOW_COPY_AND_ASSIGN(StreamParserBuffer); |