HomeSort by relevance Sort by last modified time
    Searched refs:next_frame (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/media/cast/net/rtp/
framer_unittest.cc 38 bool next_frame = false; local
40 EXPECT_FALSE(framer_.GetEncodedFrame(&frame, &next_frame, &multiple));
45 bool next_frame = false; local
54 EXPECT_FALSE(framer_.GetEncodedFrame(&frame, &next_frame, &multiple));
61 EXPECT_TRUE(framer_.GetEncodedFrame(&frame, &next_frame, &multiple));
62 EXPECT_TRUE(next_frame);
72 bool next_frame = false; local
82 EXPECT_TRUE(framer_.GetEncodedFrame(&frame, &next_frame, &multiple));
83 EXPECT_TRUE(next_frame);
98 EXPECT_FALSE(framer_.GetEncodedFrame(&frame, &next_frame, &multiple))
112 bool next_frame = false; local
208 bool next_frame = false; local
239 bool next_frame = false; local
273 bool next_frame = false; local
289 bool next_frame = false; local
313 bool next_frame = false; local
340 bool next_frame = false; local
406 bool next_frame = false; local
455 bool next_frame = false; local
    [all...]
framer.h 44 // |next_frame| will be set to true if the returned frame is the very
48 bool* next_frame,
framer.cc 85 bool* next_frame,
93 *next_frame = true;
102 *next_frame = false;
  /external/chromium_org/net/quic/
quic_stream_sequencer.cc 216 FrameMap::const_iterator next_frame = local
219 DCHECK(next_frame == buffered_frames_.end() ||
220 next_frame->first != frame.offset);
224 if (next_frame != buffered_frames_.end() &&
225 (frame.offset + frame.data.TotalBufferSize()) > next_frame->first) {
227 << frame.data.TotalBufferSize() << " > " << next_frame->first;
233 if (next_frame != buffered_frames_.begin()) {
234 FrameMap::const_iterator preceeding_frame = --next_frame;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
firstpass.c 87 static int lookup_next_frame_stats(VP8_COMP *cpi, FIRSTPASS_STATS *next_frame)
92 *next_frame = *cpi->twopass.stats_in;
1504 FIRSTPASS_STATS next_frame; local
1740 FIRSTPASS_STATS next_frame; local
2524 FIRSTPASS_STATS next_frame; local
2719 FIRSTPASS_STATS next_frame; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
firstpass.c 87 static int lookup_next_frame_stats(VP8_COMP *cpi, FIRSTPASS_STATS *next_frame)
92 *next_frame = *cpi->twopass.stats_in;
1504 FIRSTPASS_STATS next_frame; local
1740 FIRSTPASS_STATS next_frame; local
2524 FIRSTPASS_STATS next_frame; local
2719 FIRSTPASS_STATS next_frame; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_firstpass.c 87 FIRSTPASS_STATS *next_frame) {
91 *next_frame = *p->stats_in;
1099 FIRSTPASS_STATS next_frame; local
1410 FIRSTPASS_STATS next_frame = { 0 }; local
1905 FIRSTPASS_STATS next_frame; local
2311 FIRSTPASS_STATS next_frame; local
    [all...]
  /external/chromium_org/content/renderer/media/
rtc_video_encoder.cc 462 const webrtc::I420VideoFrame* next_frame = input_next_frame_; local
494 media::CopyYPlane(next_frame->buffer(webrtc::kYPlane),
495 next_frame->stride(webrtc::kYPlane),
496 next_frame->height(),
498 media::CopyUPlane(next_frame->buffer(webrtc::kUPlane),
499 next_frame->stride(webrtc::kUPlane),
500 next_frame->height(),
502 media::CopyVPlane(next_frame->buffer(webrtc::kVPlane),
503 next_frame->stride(webrtc::kVPlane),
504 next_frame->height()
    [all...]
  /external/chromium_org/content/browser/renderer_host/
software_frame_manager.cc 99 scoped_refptr<SoftwareFrame> next_frame(
106 current_frame_.swap(next_frame);
  /external/chromium_org/content/browser/compositor/
buffer_queue_unittest.cc 54 const BufferQueue::AllocatedSurface& next_frame() { function in class:content::BufferQueueTest
193 EXPECT_EQ(next_frame().damage, large_damage);
205 EXPECT_EQ(next_frame().damage, screen_rect);
220 EXPECT_EQ(next_frame().damage, overlapping_damage);
  /external/chromium_org/media/filters/
video_renderer_impl.cc 266 scoped_refptr<VideoFrame> next_frame = ready_frames_.front(); local
270 last_timestamp_ = next_frame->timestamp();
271 last_painted_timestamp_ = next_frame->timestamp();
273 paint_cb_.Run(next_frame);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_firstpass.c 1156 const FIRSTPASS_STATS *const next_frame = read_frame_stats(twopass, offset); local
1556 FIRSTPASS_STATS next_frame; local
1877 FIRSTPASS_STATS next_frame; local
    [all...]
  /external/lldb/source/Plugins/Process/Utility/
RegisterContextLLDB.h 31 const SharedPtr& next_frame,
RegisterContextLLDB.cpp 42 const SharedPtr &next_frame,
78 || next_frame->m_frame_type == eSigtrampFrame
79 || next_frame->m_frame_type == eDebuggerFrame)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_and_cursor_composer_unittest.cc 85 void SetNextFrame(DesktopFrame* next_frame) {
86 next_frame_.reset(next_frame);
  /external/chromium_org/cc/trees/
layer_tree_host_unittest_damage.cc 209 int next_frame = layer_tree_host()->source_frame_number(); variable
210 switch (next_frame) {
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
jitter_buffer.cc 918 VCMFrameBuffer* next_frame = NextFrame(); local
919 const bool first_frame_is_key = next_frame &&
920 next_frame->FrameType() == kVideoFrameKey &&
921 next_frame->HaveFirstPacket();
    [all...]
  /art/runtime/
stack.cc 582 byte* next_frame = reinterpret_cast<byte*>(cur_quick_frame_) + frame_size; local
583 cur_quick_frame_ = reinterpret_cast<StackReference<mirror::ArtMethod>*>(next_frame);

Completed in 1101 milliseconds