HomeSort by relevance Sort by last modified time
    Searched refs:StreamParserBuffer (Results 1 - 25 of 33) sorted by null

1 2

  /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...]
stream_parser.h 23 class StreamParserBuffer;
30 typedef std::deque<scoped_refptr<StreamParserBuffer> > BufferQueue;
stream_parser_unittest.cc 26 static bool IsAudio(scoped_refptr<StreamParserBuffer> buffer) {
30 static bool IsVideo(scoped_refptr<StreamParserBuffer> buffer) {
34 static bool IsText(scoped_refptr<StreamParserBuffer> buffer) {
44 StreamParserBuffer::Type type,
52 scoped_refptr<StreamParserBuffer> buffer =
53 StreamParserBuffer::CopyFrom(kFakeData, sizeof(kFakeData),
68 bool (*predicate)(scoped_refptr<StreamParserBuffer> buffer)) {
132 const StreamParserBuffer& buffer = *(itr->get());
stream_parser.cc 105 scoped_refptr<StreamParserBuffer> buffer =
  /external/chromium_org/media/formats/mp2t/
es_adapter_video_unittest.cc 37 StreamParserBuffer::BufferQueue
43 StreamParserBuffer::BufferQueue buffers(frame_count);
45 buffers[k] = StreamParserBuffer::CopyFrom(
69 void OnNewBuffer(scoped_refptr<StreamParserBuffer> buffer);
89 scoped_refptr<StreamParserBuffer> buffer) {
95 const StreamParserBuffer::BufferQueue& buffer_queue) {
99 for (StreamParserBuffer::BufferQueue::const_iterator it =
116 StreamParserBuffer::BufferQueue buffer_queue =
129 StreamParserBuffer::BufferQueue buffer_queue =
140 StreamParserBuffer::BufferQueue buffer_queue
    [all...]
es_adapter_video.h 34 typedef base::Callback<void(scoped_refptr<StreamParserBuffer>)> EmitBufferCB;
52 const scoped_refptr<StreamParserBuffer>& stream_parser_buffer);
55 typedef std::deque<scoped_refptr<StreamParserBuffer> > BufferQueue;
67 const scoped_refptr<StreamParserBuffer>& stream_parser_buffer);
es_parser.h 21 class StreamParserBuffer;
27 typedef base::Callback<void(scoped_refptr<StreamParserBuffer>)> EmitBufferCB;
es_parser_test_base.h 18 class StreamParserBuffer;
48 void EmitBuffer(scoped_refptr<StreamParserBuffer> buffer);
mp2t_stream_parser.h 22 class StreamParserBuffer;
90 scoped_refptr<StreamParserBuffer> stream_parser_buffer);
93 scoped_refptr<StreamParserBuffer> stream_parser_buffer);
es_parser_adts.h 23 class StreamParserBuffer;
es_adapter_video.cc 71 const scoped_refptr<StreamParserBuffer>& stream_parser_buffer) {
106 scoped_refptr<StreamParserBuffer> buffer = buffer_list_.front();
162 const scoped_refptr<StreamParserBuffer>& stream_parser_buffer) {
173 scoped_refptr<StreamParserBuffer> frame =
174 StreamParserBuffer::CopyFrom(
es_parser_mpeg1audio.h 24 class StreamParserBuffer;
es_parser_adts.cc 155 scoped_refptr<StreamParserBuffer> stream_parser_buffer =
156 StreamParserBuffer::CopyFrom(
es_parser_mpeg1audio.cc 80 scoped_refptr<StreamParserBuffer> stream_parser_buffer =
81 StreamParserBuffer::CopyFrom(
es_parser_test_base.cc 53 void EsParserTestBase::EmitBuffer(scoped_refptr<StreamParserBuffer> buffer) {
es_parser_h264.cc 239 scoped_refptr<StreamParserBuffer> stream_parser_buffer =
240 StreamParserBuffer::CopyFrom(
  /external/chromium_org/media/filters/
frame_processor.h 128 const scoped_refptr<StreamParserBuffer>& buffer);
132 bool ProcessFrame(const scoped_refptr<StreamParserBuffer>& frame,
143 scoped_refptr<StreamParserBuffer> audio_preroll_buffer_;
source_buffer_stream.h 111 Status GetNextBuffer(scoped_refptr<StreamParserBuffer>* out_buffer);
306 scoped_refptr<StreamParserBuffer>* out_buffer);
311 scoped_refptr<StreamParserBuffer>* out_buffer);
316 Status GetNextBufferInternal(scoped_refptr<StreamParserBuffer>* out_buffer);
326 bool SetPendingBuffer(scoped_refptr<StreamParserBuffer>* out_buffer);
407 scoped_refptr<StreamParserBuffer> pending_buffer_;
frame_processor.cc 71 void EnqueueProcessedFrame(const scoped_refptr<StreamParserBuffer>& frame);
141 const scoped_refptr<StreamParserBuffer>& frame) {
332 const scoped_refptr<StreamParserBuffer>& buffer) {
420 const scoped_refptr<StreamParserBuffer>& frame,
source_buffer_range.h 137 bool GetNextBuffer(scoped_refptr<StreamParserBuffer>* out_buffer);
source_buffer_stream_unittest.cc 227 scoped_refptr<StreamParserBuffer> buffer;
260 scoped_refptr<StreamParserBuffer> buffer;
299 scoped_refptr<StreamParserBuffer> preroll_buffer;
337 scoped_refptr<StreamParserBuffer> buffer;
390 scoped_refptr<StreamParserBuffer> buffer =
391 StreamParserBuffer::CopyFrom(data, size, is_keyframe,
436 // Generates a StreamParserBuffer with decode and presentation timestamp xx.
440 // Generates a StreamParserBuffer with presentation timestamp pp and decode
533 scoped_refptr<StreamParserBuffer> buffer =
534 StreamParserBuffer::CopyFrom(&kDataA, kDataSize, is_keyframe
    [all...]
source_buffer_range.cc 14 const scoped_refptr<StreamParserBuffer>& buffer) {
18 const scoped_refptr<StreamParserBuffer>& buffer,
392 scoped_refptr<StreamParserBuffer>* out_buffer) {
573 const scoped_refptr<StreamParserBuffer>& buffer = *it;
  /external/chromium_org/media/formats/webm/
webm_cluster_parser.h 26 typedef std::deque<scoped_refptr<StreamParserBuffer> > BufferQueue;
67 bool AddBuffer(const scoped_refptr<StreamParserBuffer>& buffer);
99 bool QueueBuffer(const scoped_refptr<StreamParserBuffer>& buffer);
113 scoped_refptr<StreamParserBuffer> last_added_buffer_missing_duration_;
webm_cluster_parser.cc 325 StreamParserBuffer::Type buffer_type = DemuxerStream::AUDIO;
353 scoped_refptr<StreamParserBuffer> buffer;
379 buffer = StreamParserBuffer::CopyFrom(
398 buffer = StreamParserBuffer::CopyFrom(
471 const scoped_refptr<StreamParserBuffer>& buffer = buffers_.front();
485 const scoped_refptr<StreamParserBuffer>& buffer) {
504 scoped_refptr<StreamParserBuffer> updated_buffer =
576 const scoped_refptr<StreamParserBuffer>& buffer) {

Completed in 230 milliseconds

1 2