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

1 2 3

  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
swapyv12buffer.c 14 void vp8_swap_yv12_buffer(YV12_BUFFER_CONFIG *new_frame, YV12_BUFFER_CONFIG *last_frame)
18 temp = last_frame->buffer_alloc;
19 last_frame->buffer_alloc = new_frame->buffer_alloc;
22 temp = last_frame->y_buffer;
23 last_frame->y_buffer = new_frame->y_buffer;
26 temp = last_frame->u_buffer;
27 last_frame->u_buffer = new_frame->u_buffer;
30 temp = last_frame->v_buffer;
31 last_frame->v_buffer = new_frame->v_buffer;
swapyv12buffer.h 21 void vp8_swap_yv12_buffer(YV12_BUFFER_CONFIG *new_frame, YV12_BUFFER_CONFIG *last_frame);
  /external/libvpx/libvpx/vp8/common/
swapyv12buffer.c 14 void vp8_swap_yv12_buffer(YV12_BUFFER_CONFIG *new_frame, YV12_BUFFER_CONFIG *last_frame)
18 temp = last_frame->buffer_alloc;
19 last_frame->buffer_alloc = new_frame->buffer_alloc;
22 temp = last_frame->y_buffer;
23 last_frame->y_buffer = new_frame->y_buffer;
26 temp = last_frame->u_buffer;
27 last_frame->u_buffer = new_frame->u_buffer;
30 temp = last_frame->v_buffer;
31 last_frame->v_buffer = new_frame->v_buffer;
swapyv12buffer.h 21 void vp8_swap_yv12_buffer(YV12_BUFFER_CONFIG *new_frame, YV12_BUFFER_CONFIG *last_frame);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
swapyv12buffer.c 14 void vp8_swap_yv12_buffer(YV12_BUFFER_CONFIG *new_frame, YV12_BUFFER_CONFIG *last_frame)
18 temp = last_frame->buffer_alloc;
19 last_frame->buffer_alloc = new_frame->buffer_alloc;
22 temp = last_frame->y_buffer;
23 last_frame->y_buffer = new_frame->y_buffer;
26 temp = last_frame->u_buffer;
27 last_frame->u_buffer = new_frame->u_buffer;
30 temp = last_frame->v_buffer;
31 last_frame->v_buffer = new_frame->v_buffer;
swapyv12buffer.h 21 void vp8_swap_yv12_buffer(YV12_BUFFER_CONFIG *new_frame, YV12_BUFFER_CONFIG *last_frame);
  /external/lldb/examples/python/
stacks.py 21 last_frame = None
24 if last_frame:
27 if frame.fp == last_frame.fp:
33 first_frame_size = last_frame.fp - last_frame.sp
34 print "<%#7x> %s" % (first_frame_size, last_frame)
36 name = last_frame.name
43 frame_size = frame.fp - last_frame.fp
51 last_frame = frame
  /external/chromium_org/cc/output/
delegating_renderer_unittest.cc 48 const CompositorFrame& last_frame = output_surface_->last_sent_frame(); variable
49 EXPECT_FALSE(last_frame.delegated_frame_data);
50 EXPECT_FALSE(last_frame.gl_frame_data);
51 EXPECT_EQ(0.f, last_frame.metadata.min_page_scale_factor);
52 EXPECT_EQ(0.f, last_frame.metadata.max_page_scale_factor);
65 const CompositorFrame& last_frame = output_surface_->last_sent_frame(); variable
66 DelegatedFrameData* last_frame_data = last_frame.delegated_frame_data.get();
67 ASSERT_TRUE(last_frame.delegated_frame_data);
68 EXPECT_FALSE(last_frame.gl_frame_data);
71 EXPECT_EQ(0.5f, last_frame.metadata.min_page_scale_factor)
125 const CompositorFrame& last_frame = output_surface_->last_sent_frame(); variable
    [all...]
  /external/chromium_org/content/renderer/media/
mock_media_stream_video_sink.h 35 scoped_refptr<media::VideoFrame> last_frame() const { return last_frame_; }; function in class:content::MockMediaStreamVideoSink
video_source_handler_unittest.cc 35 const media::VideoFrame* last_frame() { function in class:content::FakeFrameReader
79 const media::VideoFrame* frame = reader.last_frame();
media_stream_video_track_unittest.cc 170 EXPECT_EQ(kColorValue, *sink.last_frame()->data(media::VideoFrame::kYPlane));
177 EXPECT_EQ(kBlackValue, *sink.last_frame()->data(media::VideoFrame::kYPlane));
183 EXPECT_EQ(kColorValue, *sink.last_frame()->data(media::VideoFrame::kYPlane));
  /external/qemu/android/camera/
camera-capture-windows.c 88 void* last_frame; member in struct:WndCameraDevice
89 /* Byte size of the 'last_frame' buffer. */
150 if (cd->last_frame != NULL) {
151 free(cd->last_frame);
184 if (cd->last_frame != NULL) {
185 free(cd->last_frame);
186 cd->last_frame = NULL;
218 if (wcd->last_frame != NULL) {
219 free(wcd->last_frame);
221 wcd->last_frame = malloc(wcd->last_frame_size)
    [all...]
  /external/chromium_org/media/cast/framer/
frame_id_map.h 72 bool last_frame,
cast_message_builder.cc 173 bool last_frame = (newest_frame_id == next_expected_frame_id); local
175 next_expected_frame_id, last_frame, &missing);
frame_id_map.cc 213 bool last_frame,
219 it->second->GetMissingPackets(last_frame, missing_packets);
  /external/chromium_org/third_party/android_platform/development/scripts/
stack_core.py 128 last_frame = -1
174 last_frame = -1
196 if frame <= last_frame and (trace_lines or value_lines):
201 last_frame = frame
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
screen_capturer_win_gdi.cc 97 const DesktopFrame* last_frame = queue_.previous_frame(); local
98 if (last_frame && last_frame->size().equals(current_frame->size())) {
113 differ_->CalcDirtyRegion(last_frame->data(), current_frame->data(),
screen_capturer_win_magnifier.cc 132 const DesktopFrame* last_frame = queue_.previous_frame(); local
133 if (last_frame && last_frame->size().equals(current_frame->size())) {
148 last_frame->data(), current_frame->data(), &region);
  /external/libunwind/src/x86_64/
Gtrace.c 228 f->last_frame = 0;
258 f->last_frame = -1;
261 f->virtual_address, f->frame_type, f->last_frame,
457 f->virtual_address, f->frame_type, f->last_frame,
468 if (f->last_frame)
  /development/scripts/
stack_core.py 45 last_frame = -1 variable in class:TraceConverter
164 self.last_frame = -1
192 if frame <= self.last_frame and (self.trace_lines or self.value_lines):
197 self.last_frame = frame
  /external/srec/srec/crec/
get_fram.c 112 prep->last_frame = (featdata *) CALLOC(prep->dim, sizeof(featdata),
113 "srec.prep->last_frame");
161 FREE((char *)prep->last_frame);
238 ASSERT(prep->last_frame);
239 memcpy(prep->last_frame, frame_ptr,
433 if (prep->last_frame[ii] != frame_ptr[ii])
  /external/srec/srec/include/
pre_desc.h 144 featdata *last_frame; /* last frame processed in frame buffer */ member in struct:__anon34840
  /external/lldb/source/Target/
StackFrameList.cpp 875 uint32_t last_frame; local
879 last_frame = UINT32_MAX;
881 last_frame = first_frame + num_frames;
    [all...]
  /bionic/libc/kernel/uapi/drm/
mga_drm.h 157 drm_mga_age_t last_frame; member in struct:_drm_mga_sarea
r128_drm.h 114 unsigned int last_frame; member in struct:drm_r128_sarea

Completed in 1332 milliseconds

1 2 3