Searched defs:end_of_stream (Results 1 - 16 of 16) sorted by last modified time

/external/libvpx/libvpx/examples/
H A Dvp9_spatial_scalable_encoder.c297 int end_of_stream = 0; local
339 while (!end_of_stream) {
343 end_of_stream = 1;
346 res = vpx_svc_encode(&svc_ctx, &codec, (end_of_stream ? NULL : &raw),
365 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/third_party/webrtc/base/
H A Dstream.cc1289 bool end_of_stream = false; local
1292 while (!end_of_stream && (read_pos < buffer_len)) {
1296 end_of_stream = true;
1325 } while (!end_of_stream);
/external/chromium_org/third_party/libvpx/source/libvpx/examples/
H A Dvp9_spatial_svc_encoder.c285 int end_of_stream = 0; local
322 while (!end_of_stream) {
328 end_of_stream = 1;
331 res = vpx_svc_encode(&svc_ctx, &codec, (end_of_stream ? NULL : &raw),
365 if (!end_of_stream) {
/external/chromium_org/media/base/android/
H A Ddemuxer_stream_player_params.h42 bool end_of_stream; member in struct:media::AccessUnit
H A Dmedia_codec_bridge.cc392 bool* end_of_stream,
409 if (end_of_stream)
410 *end_of_stream = flags & kBufferFlagEndOfStream;
386 DequeueOutputBuffer( const base::TimeDelta& timeout, int* index, size_t* offset, size_t* size, base::TimeDelta* presentation_time, bool* end_of_stream, bool* key_frame) argument
/external/chromium_org/media/base/
H A Daudio_buffer.h62 // Calling any method other than end_of_stream() on the resulting buffer
107 bool end_of_stream() const { return end_of_stream_; } function in class:media::AudioBuffer
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 Ddecoder_buffer.h31 // NOTE: It is illegal to call any method when end_of_stream() is true.
61 // Calling any method other than end_of_stream() on the resulting buffer
66 DCHECK(!end_of_stream());
75 DCHECK(!end_of_stream());
80 DCHECK(!end_of_stream());
88 DCHECK(!end_of_stream());
93 DCHECK(!end_of_stream());
98 DCHECK(!end_of_stream());
103 DCHECK(!end_of_stream());
108 DCHECK(!end_of_stream());
139 bool end_of_stream() const { function in class:media::DecoderBuffer
[all...]
H A Ddemuxer_perftest.cc72 bool* end_of_stream,
113 bool end_of_stream = false; local
118 base::MessageLoop::current(), &end_of_stream, &timestamp));
121 CHECK(end_of_stream || timestamp != media::kNoTimestamp());
122 end_of_stream_[index] = end_of_stream;
137 bool* end_of_stream,
143 *end_of_stream = buffer->end_of_stream();
144 *timestamp = *end_of_stream ? media::kNoTimestamp() : buffer->timestamp();
135 OnReadDone( base::MessageLoop* message_loop, bool* end_of_stream, base::TimeDelta* timestamp, media::DemuxerStream::Status status, const scoped_refptr<media::DecoderBuffer>& buffer) argument
H A Dvideo_frame.cc384 frame->end_of_stream()));
711 bool end_of_stream)
720 end_of_stream_(end_of_stream) {
705 VideoFrame(VideoFrame::Format format, const gfx::Size& coded_size, const gfx::Rect& visible_rect, const gfx::Size& natural_size, scoped_ptr<gpu::MailboxHolder> mailbox_holder, base::TimeDelta timestamp, bool end_of_stream) argument
H A Dvideo_frame.h289 bool end_of_stream() const { return end_of_stream_; } function in class:media::VideoFrame
333 bool end_of_stream);
/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_org/media/filters/
H A Ddecoder_stream.cc269 int buffer_size = buffer->end_of_stream() ? 0 : buffer->data_size();
273 if (buffer->end_of_stream())
281 buffer->end_of_stream()));
291 bool end_of_stream,
303 if (end_of_stream)
336 if (end_of_stream) {
359 DCHECK(!output->end_of_stream());
456 if (!splice_observer_cb_.is_null() && !buffer->end_of_stream()) {
290 OnDecodeDone(int buffer_size, bool end_of_stream, typename Decoder::Status status) argument
/external/chromium_org/chromecast/media/cma/base/
H A Ddecoder_buffer_adapter.cc40 bool DecoderBufferAdapter::end_of_stream() const { function in class:chromecast::media::DecoderBufferAdapter
41 return buffer_->end_of_stream();
/external/chromium_org/chromecast/media/cma/ipc_streamer/
H A Ddecoder_buffer_base_marshaller.cc32 virtual bool end_of_stream() const OVERRIDE;
124 bool DecoderBufferFromMsg::end_of_stream() const { function in class:chromecast::media::__anon6069::DecoderBufferFromMsg
134 CHECK(msg->WritePod(buffer->end_of_stream()));
135 if (buffer->end_of_stream())

Completed in 8591 milliseconds