/external/libvpx/libvpx/vp8/common/ |
D | swapyv12buffer.c | 14 void vp8_swap_yv12_buffer(YV12_BUFFER_CONFIG *new_frame, YV12_BUFFER_CONFIG *last_frame) in vp8_swap_yv12_buffer() argument 19 last_frame->buffer_alloc = new_frame->buffer_alloc; in vp8_swap_yv12_buffer() 20 new_frame->buffer_alloc = temp; in vp8_swap_yv12_buffer() 23 last_frame->y_buffer = new_frame->y_buffer; in vp8_swap_yv12_buffer() 24 new_frame->y_buffer = temp; in vp8_swap_yv12_buffer() 27 last_frame->u_buffer = new_frame->u_buffer; in vp8_swap_yv12_buffer() 28 new_frame->u_buffer = temp; in vp8_swap_yv12_buffer() 31 last_frame->v_buffer = new_frame->v_buffer; in vp8_swap_yv12_buffer() 32 new_frame->v_buffer = temp; in vp8_swap_yv12_buffer()
|
D | swapyv12buffer.h | 21 void vp8_swap_yv12_buffer(YV12_BUFFER_CONFIG *new_frame, YV12_BUFFER_CONFIG *last_frame);
|
/external/google-breakpad/src/processor/ |
D | stackwalker_amd64.cc | 255 scoped_ptr<StackFrameAMD64> new_frame; in GetCallerFrame() local 261 new_frame.reset(GetCallerByCFIFrameInfo(frames, cfi_frame_info.get())); in GetCallerFrame() 264 if (!new_frame.get()) { in GetCallerFrame() 265 new_frame.reset(GetCallerByFramePointerRecovery(frames)); in GetCallerFrame() 269 if (stack_scan_allowed && !new_frame.get()) { in GetCallerFrame() 270 new_frame.reset(GetCallerByStackScan(frames)); in GetCallerFrame() 274 if (!new_frame.get()) in GetCallerFrame() 282 new_frame->context.rip = static_cast<uint32_t>(new_frame->context.rip); in GetCallerFrame() 283 new_frame->context.rsp = static_cast<uint32_t>(new_frame->context.rsp); in GetCallerFrame() 284 new_frame->context.rbp = static_cast<uint32_t>(new_frame->context.rbp); in GetCallerFrame() [all …]
|
D | stackwalker_x86.cc | 627 scoped_ptr<StackFrameX86> new_frame; in GetCallerFrame() local 633 new_frame.reset(GetCallerByWindowsFrameInfo(frames, windows_frame_info, in GetCallerFrame() 637 if (!new_frame.get()) { in GetCallerFrame() 641 new_frame.reset(GetCallerByCFIFrameInfo(frames, cfi_frame_info)); in GetCallerFrame() 645 if (!new_frame.get()) in GetCallerFrame() 646 new_frame.reset(GetCallerByEBPAtBase(frames, stack_scan_allowed)); in GetCallerFrame() 649 if (!new_frame.get()) in GetCallerFrame() 653 if (new_frame->context.eip == 0) in GetCallerFrame() 659 if (new_frame->context.esp <= last_frame->context.esp) in GetCallerFrame() 667 new_frame->instruction = new_frame->context.eip - 1; in GetCallerFrame() [all …]
|
D | stackwalker_mips.cc | 177 scoped_ptr<StackFrameMIPS> new_frame; in GetCallerFrame() local 183 new_frame.reset(GetCallerByCFIFrameInfo(frames, cfi_frame_info.get())); in GetCallerFrame() 186 if (stack_scan_allowed && !new_frame.get()) { in GetCallerFrame() 187 new_frame.reset(GetCallerByStackScan(frames)); in GetCallerFrame() 191 if (!new_frame.get()) { in GetCallerFrame() 196 if (new_frame->context.epc == 0) { in GetCallerFrame() 203 if (new_frame->context.iregs[MD_CONTEXT_MIPS_REG_SP] <= in GetCallerFrame() 208 return new_frame.release(); in GetCallerFrame()
|
/external/webrtc/webrtc/common_video/ |
D | video_render_frames.cc | 29 int32_t VideoRenderFrames::AddFrame(const VideoFrame& new_frame) { in AddFrame() argument 35 new_frame.render_time_ms() + KOldRenderTimestampMS < time_now) { in AddFrame() 41 new_frame.timestamp()); in AddFrame() 45 if (new_frame.render_time_ms() > time_now + KFutureRenderTimestampMS) { in AddFrame() 48 __FUNCTION__, new_frame.timestamp()); in AddFrame() 52 incoming_frames_.push_back(new_frame); in AddFrame()
|
D | video_render_frames.h | 28 int32_t AddFrame(const VideoFrame& new_frame);
|
/external/webrtc/talk/media/webrtc/ |
D | webrtcvideoframe.cc | 152 WebRtcVideoFrame* new_frame = new WebRtcVideoFrame( in Copy() local 154 new_frame->pixel_width_ = pixel_width_; in Copy() 155 new_frame->pixel_height_ = pixel_height_; in Copy() 156 return new_frame; in Copy()
|
/external/webrtc/webrtc/modules/desktop_capture/ |
D | screen_capturer_mac.mm | 439 DesktopFrame* new_frame = queue_.current_frame()->Share(); 440 *new_frame->mutable_updated_region() = region; 443 new_frame = new InvertedDesktopFrame(new_frame); 445 helper_.set_size_most_recent(new_frame->size()); 451 new_frame->set_capture_time_ms( 453 callback_->OnCaptureCompleted(new_frame);
|
/external/opencv3/modules/videoio/src/ |
D | cap_xine.cpp | 564 int new_frame = ( int ) ( ( float ) t * capture->frame_rate / 1000 ); in icvSeekTimeAVI_XINE() local 568 return icvOldSeekFrameAVI_XINE( capture, new_frame ); in icvSeekTimeAVI_XINE()
|
/external/libvpx/libvpx/third_party/libwebm/ |
D | mkvmuxer.cpp | 2653 Frame* const new_frame = new (std::nothrow) Frame(); in AddGenericFrame() local 2654 if (!new_frame || !new_frame->CopyFrom(*frame)) in AddGenericFrame() 2656 return QueueFrame(new_frame); in AddGenericFrame() 2676 Frame* const new_frame = new (std::nothrow) Frame(); in AddGenericFrame() local 2677 if (!new_frame->CopyFrom(*frame)) in AddGenericFrame() 2679 new_frame->set_reference_block_timestamp( in AddGenericFrame() 2681 frame = new_frame; in AddGenericFrame()
|
/external/webrtc/webrtc/modules/video_coding/ |
D | jitter_buffer.h | 252 void FindAndInsertContinuousFrames(const VCMFrameBuffer& new_frame)
|
D | jitter_buffer.cc | 874 const VCMFrameBuffer& new_frame) { in FindAndInsertContinuousFrames() argument 877 decoding_state.SetState(&new_frame); in FindAndInsertContinuousFrames()
|
/external/webrtc/webrtc/video/ |
D | video_send_stream_tests.cc | 2092 bool new_frame = packets_sent_ == 0 || in CompareConsecutiveFrames() local 2094 EXPECT_EQ(new_frame, video.isFirstPacket); in CompareConsecutiveFrames() 2095 if (!new_frame) { in CompareConsecutiveFrames()
|