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

Unified Diff: media/base/stream_parser_buffer.h

Issue 149153002: MSE: Add StreamParser buffer remuxing utility and tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments from PS4 Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/base/stream_parser.cc ('k') | media/base/stream_parser_buffer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « media/base/stream_parser.cc ('k') | media/base/stream_parser_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698