Searched defs:end_of_stream (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/media/base/
H A Ddata_buffer.h22 // NOTE: It is illegal to call any method when end_of_stream() is true.
38 // Calling any method other than end_of_stream() on the resulting buffer
43 DCHECK(!end_of_stream());
48 DCHECK(!end_of_stream());
53 DCHECK(!end_of_stream());
58 DCHECK(!end_of_stream());
63 DCHECK(!end_of_stream());
68 DCHECK(!end_of_stream());
76 DCHECK(!end_of_stream());
81 DCHECK(!end_of_stream());
87 bool end_of_stream() const { return data_ == NULL; } function in class:media::DataBuffer
[all...]
H A Daudio_buffer.h54 // Calling any method other than end_of_stream() on the resulting buffer
95 bool end_of_stream() const { return end_of_stream_; } function in class:media::AudioBuffer
H A Ddecoder_buffer.h29 // NOTE: It is illegal to call any method when end_of_stream() is true.
59 // Calling any method other than end_of_stream() on the resulting buffer
64 DCHECK(!end_of_stream());
69 DCHECK(!end_of_stream());
74 DCHECK(!end_of_stream());
79 DCHECK(!end_of_stream());
84 DCHECK(!end_of_stream());
89 DCHECK(!end_of_stream());
94 DCHECK(!end_of_stream());
99 DCHECK(!end_of_stream());
119 bool end_of_stream() const { function in class:media::DecoderBuffer
[all...]
/external/chromium_org/media/base/android/
H A Ddemuxer_stream_player_params.h44 bool end_of_stream; member in struct:media::AccessUnit
H A Dmedia_codec_bridge.cc171 base::TimeDelta* presentation_time, bool* end_of_stream) {
190 *end_of_stream = flags & kBufferFlagEndOfStream;
169 DequeueOutputBuffer( base::TimeDelta timeout, size_t* offset, size_t* size, base::TimeDelta* presentation_time, bool* end_of_stream) argument
H A Dmedia_source_player.cc132 if (unit.end_of_stream || unit.data.empty()) {
188 bool end_of_stream = false; local
193 timeout, &offset, &size, &presentation_timestamp, &end_of_stream);
195 if (end_of_stream)
/external/flac/libFLAC/include/private/
H A Dogg_decoder_aspect.h50 FLAC__bool end_of_stream; member in struct:FLAC__OggDecoderAspect
/external/chromium_org/media/tools/demuxer_bench/
H A Ddemuxer_bench.cc77 bool* end_of_stream,
118 bool end_of_stream = false; local
123 base::MessageLoop::current(), &end_of_stream, &timestamp));
126 CHECK(end_of_stream || timestamp != media::kNoTimestamp());
127 end_of_stream_[index] = end_of_stream;
142 bool* end_of_stream,
148 *end_of_stream = buffer->end_of_stream();
149 *timestamp = *end_of_stream ? media::kNoTimestamp() : buffer->timestamp();
140 OnReadDone( base::MessageLoop* message_loop, bool* end_of_stream, base::TimeDelta* timestamp, media::DemuxerStream::Status status, const scoped_refptr<media::DecoderBuffer>& buffer) argument
/external/chromium_org/media/ffmpeg/
H A Dffmpeg_unittest.cc226 bool end_of_stream = false; local
231 end_of_stream = true;
244 if (result < 0 || (got_audio == 0 && end_of_stream)) {
280 bool end_of_stream = false; local
285 end_of_stream = true;
299 if (result < 0 || (got_picture == 0 && end_of_stream)) {
/external/chromium/third_party/libjingle/source/talk/base/
H A Dstream.cc1048 bool end_of_stream = false; local
1051 while (!end_of_stream && (read_pos < buffer_len)) {
1055 end_of_stream = true;
1084 } while (!end_of_stream);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dstream.cc1206 bool end_of_stream = false; local
1209 while (!end_of_stream && (read_pos < buffer_len)) {
1213 end_of_stream = true;
1242 } while (!end_of_stream);

Completed in 246 milliseconds