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

1 2

  /external/chromium_org/media/base/
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...]
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.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);
stream_parser.cc 105 scoped_refptr<StreamParserBuffer> buffer =
  /external/chromium_org/media/formats/mp2t/
es_parser.h 15 class StreamParserBuffer;
21 typedef base::Callback<void(scoped_refptr<StreamParserBuffer>)> EmitBufferCB;
mp2t_stream_parser.h 21 class StreamParserBuffer;
89 scoped_refptr<StreamParserBuffer> stream_parser_buffer);
92 scoped_refptr<StreamParserBuffer> stream_parser_buffer);
99 const scoped_refptr<StreamParserBuffer>& stream_parser_buffer);
es_parser_adts.h 22 class StreamParserBuffer;
es_parser_adts.cc 168 scoped_refptr<StreamParserBuffer> stream_parser_buffer =
169 StreamParserBuffer::CopyFrom(
es_parser_h264.cc 267 scoped_refptr<StreamParserBuffer> stream_parser_buffer =
268 StreamParserBuffer::CopyFrom(
mp2t_stream_parser.cc 498 scoped_refptr<StreamParserBuffer> stream_parser_buffer) {
525 scoped_refptr<StreamParserBuffer> stream_parser_buffer) {
634 const scoped_refptr<StreamParserBuffer>& stream_parser_buffer) {
646 scoped_refptr<StreamParserBuffer> frame =
647 StreamParserBuffer::CopyFrom(
es_parser_h264_unittest.cc 143 void EmitBuffer(scoped_refptr<StreamParserBuffer> buffer);
219 void EsParserH264Test::EmitBuffer(scoped_refptr<StreamParserBuffer> buffer) {
  /external/chromium_org/media/filters/
source_buffer_stream.h 109 Status GetNextBuffer(scoped_refptr<StreamParserBuffer>* out_buffer);
308 scoped_refptr<StreamParserBuffer>* out_buffer);
313 scoped_refptr<StreamParserBuffer>* out_buffer);
318 Status GetNextBufferInternal(scoped_refptr<StreamParserBuffer>* out_buffer);
328 bool SetPendingBuffer(scoped_refptr<StreamParserBuffer>* out_buffer);
409 scoped_refptr<StreamParserBuffer> pending_buffer_;
frame_processor.h 38 bool ProcessFrame(const scoped_refptr<StreamParserBuffer>& frame,
frame_processor_base.h 201 const scoped_refptr<StreamParserBuffer>& buffer);
223 scoped_refptr<StreamParserBuffer> audio_preroll_buffer_;
source_buffer_stream_unittest.cc 229 scoped_refptr<StreamParserBuffer> buffer;
262 scoped_refptr<StreamParserBuffer> buffer;
297 scoped_refptr<StreamParserBuffer> preroll_buffer;
335 scoped_refptr<StreamParserBuffer> buffer;
387 scoped_refptr<StreamParserBuffer> buffer =
388 StreamParserBuffer::CopyFrom(data, size, is_keyframe,
423 // Generates a StreamParserBuffer with decode timestamp ##. E.g., "0 1 2 3".
486 scoped_refptr<StreamParserBuffer> buffer =
487 StreamParserBuffer::CopyFrom(&kDataA, kDataSize, is_keyframe,
499 scoped_refptr<StreamParserBuffer> preroll_buffer
    [all...]
source_buffer_stream.cc 37 static int GetConfigId(StreamParserBuffer* buffer, size_t index) {
139 bool GetNextBuffer(scoped_refptr<StreamParserBuffer>* out_buffer);
308 const scoped_refptr<media::StreamParserBuffer>& buffer) {
312 const scoped_refptr<media::StreamParserBuffer>& buffer,
    [all...]
frame_processor_base.cc 128 const scoped_refptr<StreamParserBuffer>& buffer) {
chunk_demuxer.h 28 typedef std::deque<scoped_refptr<StreamParserBuffer> > BufferQueue;
frame_processor.cc 79 const scoped_refptr<StreamParserBuffer>& frame,
  /external/chromium_org/media/formats/webm/
webm_cluster_parser.h 26 typedef std::deque<scoped_refptr<StreamParserBuffer> > BufferQueue;
66 bool AddBuffer(const scoped_refptr<StreamParserBuffer>& buffer);
98 bool QueueBuffer(const scoped_refptr<StreamParserBuffer>& buffer);
112 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) {
webm_cluster_parser_unittest.cc 134 StreamParserBuffer::Type expected_type = DemuxerStream::UNKNOWN;
160 scoped_refptr<StreamParserBuffer> buffer = (*buffers)[(*offset)++];
212 const scoped_refptr<StreamParserBuffer> buffer = *buffer_iter++;
225 scoped_refptr<StreamParserBuffer> buffer) {
669 scoped_refptr<StreamParserBuffer> buffer = parser_->GetVideoBuffers()[0];
    [all...]
  /external/chromium_org/media/formats/mpeg/
mpeg_audio_stream_parser_base.cc 241 scoped_refptr<StreamParserBuffer> buffer =
242 StreamParserBuffer::CopyFrom(data, frame_size, true,
  /external/chromium_org/media/formats/mp4/
mp4_stream_parser.cc 517 StreamParserBuffer::Type buffer_type = audio ? DemuxerStream::AUDIO :
526 scoped_refptr<StreamParserBuffer> stream_buf =
527 StreamParserBuffer::CopyFrom(&frame_buf[0], frame_buf.size(),

Completed in 267 milliseconds

1 2