Home | History | Annotate | Download | only in base

Lines Matching refs:DecoderBuffer

32 class MEDIA_EXPORT DecoderBuffer
33 : public base::RefCountedThreadSafe<DecoderBuffer> {
46 explicit DecoderBuffer(int size);
48 // Create a DecoderBuffer whose |data_| is copied from |data|. Buffer will be
50 static scoped_refptr<DecoderBuffer> CopyFrom(const uint8* data, int size);
52 // Create a DecoderBuffer whose |data_| is copied from |data| and |side_data_|
55 static scoped_refptr<DecoderBuffer> CopyFrom(const uint8* data, int size,
59 // Create a DecoderBuffer indicating we've reached end of stream.
63 static scoped_refptr<DecoderBuffer> CreateEOSBuffer();
161 friend class base::RefCountedThreadSafe<DecoderBuffer>;
166 DecoderBuffer(const uint8* data, int size,
168 virtual ~DecoderBuffer();
185 DISALLOW_COPY_AND_ASSIGN(DecoderBuffer);