HomeSort by relevance Sort by last modified time
    Searched defs:StreamParserBuffer (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/media/base/
stream_parser_buffer.cc 12 static scoped_refptr<StreamParserBuffer> CopyBuffer(
13 const StreamParserBuffer& buffer) {
15 return StreamParserBuffer::CreateEOSBuffer();
17 scoped_refptr<StreamParserBuffer> copied_buffer =
18 StreamParserBuffer::CopyFrom(buffer.data(),
42 scoped_refptr<StreamParserBuffer> StreamParserBuffer::CreateEOSBuffer() {
43 return make_scoped_refptr(new StreamParserBuffer(NULL, 0, NULL, 0, false,
47 scoped_refptr<StreamParserBuffer> StreamParserBuffer::CopyFrom
    [all...]
stream_parser_buffer.h 102 class MEDIA_EXPORT StreamParserBuffer : public DecoderBuffer {
110 static scoped_refptr<StreamParserBuffer> CreateEOSBuffer();
112 static scoped_refptr<StreamParserBuffer> CopyFrom(
115 static scoped_refptr<StreamParserBuffer> CopyFrom(
167 void SetPrerollBuffer(const scoped_refptr<StreamParserBuffer>& preroll);
168 const scoped_refptr<StreamParserBuffer>& preroll_buffer() {
175 StreamParserBuffer(const uint8* data, int data_size,
179 virtual ~StreamParserBuffer();
187 scoped_refptr<StreamParserBuffer> preroll_buffer_;
189 DISALLOW_COPY_AND_ASSIGN(StreamParserBuffer);
    [all...]

Completed in 49 milliseconds