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 17 class MEDIA_EXPORT StreamParserBuffer : public DecoderBuffer {
25 static scoped_refptr<StreamParserBuffer> CreateEOSBuffer();
27 static scoped_refptr<StreamParserBuffer> CopyFrom(
30 static scoped_refptr<StreamParserBuffer> CopyFrom(
77 void SetPrerollBuffer(const scoped_refptr<StreamParserBuffer>& preroll);
78 const scoped_refptr<StreamParserBuffer>& preroll_buffer() {
85 StreamParserBuffer(const uint8* data, int data_size,
89 virtual ~StreamParserBuffer();
97 scoped_refptr<StreamParserBuffer> preroll_buffer_;
99 DISALLOW_COPY_AND_ASSIGN(StreamParserBuffer);
    [all...]

Completed in 645 milliseconds