HomeSort by relevance Sort by last modified time
    Searched full:current_frame (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
screen_capturer_win_gdi.cc 96 const DesktopFrame* current_frame = queue_.current_frame(); local
98 if (last_frame && last_frame->size().equals(current_frame->size())) {
102 (differ_->width() != current_frame->size().width()) ||
103 (differ_->height() != current_frame->size().height()) ||
104 (differ_->bytes_per_row() != current_frame->stride())) {
105 differ_.reset(new Differ(current_frame->size().width(),
106 current_frame->size().height(),
108 current_frame->stride()));
113 differ_->CalcDirtyRegion(last_frame->data(), current_frame->data()
    [all...]
screen_capturer_win_magnifier.cc 131 const DesktopFrame* current_frame = queue_.current_frame(); local
133 if (last_frame && last_frame->size().equals(current_frame->size())) {
136 if (!differ_.get() || (differ_->width() != current_frame->size().width()) ||
137 (differ_->height() != current_frame->size().height()) ||
138 (differ_->bytes_per_row() != current_frame->stride())) {
139 differ_.reset(new Differ(current_frame->size().width(),
140 current_frame->size().height(),
142 current_frame->stride()));
148 last_frame->data(), current_frame->data(), &region)
394 DesktopFrame* current_frame = queue_.current_frame(); local
    [all...]
  /external/chromium_org/remoting/host/
screen_capturer_fake.cc 52 if (!queue_.current_frame()) {
67 DCHECK(queue_.current_frame());
70 queue_.current_frame()->mutable_updated_region()->SetRect(
72 queue_.current_frame()->set_capture_time_ms(
75 callback_->OnCaptureCompleted(queue_.current_frame()->Share());
96 webrtc::DesktopFrame* frame = queue_.current_frame();
  /external/chromium_org/media/filters/
audio_file_reader.cc 125 int current_frame = 0; local
128 while (current_frame < audio_bus->frames() && continue_decoding &&
186 if (current_frame + frames_read > audio_bus->frames()) {
188 frames_read = audio_bus->frames() - current_frame;
198 float* bus_data = audio_bus->channel(ch) + current_frame;
206 memcpy(audio_bus->channel(ch) + current_frame,
211 av_frame->data[0], current_frame, frames_read, bytes_per_sample);
214 current_frame += frames_read;
221 current_frame, audio_bus->frames() - current_frame);
    [all...]
  /frameworks/av/media/libstagefright/codecs/flac/enc/
SoftFlacEncoder.h 81 size_t bytes, unsigned samples, unsigned current_frame, void *client_data);
85 size_t bytes, unsigned samples, unsigned current_frame);
SoftFlacEncoder.cpp 355 unsigned current_frame) {
356 UNUSED_UNLESS_VERBOSE(current_frame);
358 bytes, samples, current_frame);
458 unsigned current_frame,
461 buffer, bytes, samples, current_frame);
  /external/qemu/android/camera/
camera-capture-mac.m 98 CVImageBufferRef current_frame;
245 if (current_frame != nil) {
246 CVBufferRelease(current_frame);
247 current_frame = nil;
283 if (current_frame != nil) {
286 _QTtoFOURCC(CVPixelBufferGetPixelFormatType(current_frame));
287 const int frame_width = CVPixelBufferGetWidth(current_frame);
288 const int frame_height = CVPixelBufferGetHeight(current_frame);
290 CVPixelBufferGetBytesPerRow(current_frame) * frame_height;
293 CVPixelBufferLockBaseAddress(current_frame, 0)
    [all...]
  /external/chromium_org/cc/surfaces/
display.cc 108 CompositorFrame* current_frame = current_surface_->GetEligibleFrame(); local
110 current_frame->delegated_frame_data->resource_list;
111 RenderPass::CopyAll(current_frame->delegated_frame_data->render_pass_list,
  /external/flac/libFLAC/
ogg_encoder_aspect.c 111 FLAC__StreamEncoderWriteStatus FLAC__ogg_encoder_aspect_write_callback_wrapper(FLAC__OggEncoderAspect *aspect, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, FLAC__bool is_last_block, FLAC__OggEncoderAspectWriteCallbackProxy write_callback, void *encoder, void *client_data)
197 if(write_callback(encoder, aspect->page.header, aspect->page.header_len, 0, current_frame, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK)
199 if(write_callback(encoder, aspect->page.body, aspect->page.body_len, 0, current_frame, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK)
205 if(write_callback(encoder, aspect->page.header, aspect->page.header_len, 0, current_frame, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK)
207 if(write_callback(encoder, aspect->page.body, aspect->page.body_len, 0, current_frame, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK)
212 else if(is_metadata && current_frame == 0 && samples == 0 && bytes == 4 && 0 == memcmp(buffer, FLAC__STREAM_SYNC_STRING, sizeof(FLAC__STREAM_SYNC_STRING))) {
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
screen_capture_frame_queue.h 29 // The caller is expected to (re)allocate frames if current_frame() returns
54 SharedDesktopFrame* current_frame() const { function in class:webrtc::ScreenCaptureFrameQueue
screen_capturer_x11.cc 282 if (!queue_.current_frame()) {
289 DesktopFrame* frame = queue_.current_frame();
385 DesktopFrame* frame = queue_.current_frame()->Share();
476 DesktopFrame* current = queue_.current_frame();
screen_capturer_mac.mm 422 if (!queue_.current_frame())
425 DesktopFrame* current_frame = queue_.current_frame();
431 if (!CgBlitPostLion(*current_frame, region)) {
438 GlBlitFast(*current_frame, region);
442 GlBlitSlow(*current_frame);
445 CgBlitPreLion(*current_frame, region);
448 DesktopFrame* new_frame = queue_.current_frame()->Share();
    [all...]
  /external/flac/libFLAC/include/private/
ogg_encoder_aspect.h 59 typedef FLAC__StreamEncoderWriteStatus (*FLAC__OggEncoderAspectWriteCallbackProxy)(const void *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data);
61 FLAC__StreamEncoderWriteStatus FLAC__ogg_encoder_aspect_write_callback_wrapper(FLAC__OggEncoderAspect *aspect, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, FLAC__bool is_last_block, FLAC__OggEncoderAspectWriteCallbackProxy write_callback, void *encoder, void *client_data);
  /external/chromium_org/content/renderer/
history_entry.cc 63 RenderFrameImpl* current_frame) {
64 bool is_target_frame = target_frame == current_frame;
67 new_entry, item_for_create, current_frame->GetRoutingID());
75 for (WebFrame* child = current_frame->GetWebFrame()->firstChild(); child;
savable_resources.cc 105 void GetAllSavableResourceLinksForFrame(WebFrame* current_frame,
110 GURL current_frame_url = current_frame->document().url();
132 WebDocument current_doc = current_frame->document();
history_entry.h 70 RenderFrameImpl* current_frame);
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/
overuse_detector.cc 115 void OveruseDetector::TimeDeltas(const FrameSample& current_frame,
125 if (current_frame.timestamp_ms == -1) {
126 uint32_t timestamp_diff = current_frame.timestamp - prev_frame.timestamp;
129 *ts_delta = current_frame.timestamp_ms - prev_frame.timestamp_ms;
131 *t_delta = current_frame.complete_time_ms - prev_frame.complete_time_ms;
overuse_detector.h 60 void TimeDeltas(const FrameSample& current_frame,
  /build/tools/droiddoc/templates-pdk/assets/
carousel.js 187 var current_frame = 0;
195 var left = (ease(current_frame/animation.frames) * Math.abs(animation.goal - animation.origin)) - cp;
202 current_frame += 1;
203 if (current_frame == animation.frames) {
  /art/runtime/
stack.cc 67 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL;
68 current_frame = current_frame->GetLink()) {
69 if (current_frame->GetMethod()->IsNative()) {
71 count += current_frame->NumberOfVRegs();
81 for (ShadowFrame* current_frame = current_fragment->top_shadow_frame_; current_frame != NULL;
82 current_frame = current_frame->GetLink())
    [all...]
  /external/chromium_org/v8/src/arm64/
deoptimizer-arm64.cc 263 Register current_frame = x2; local
264 __ Ldr(current_frame, MemOperand(x0, 0));
265 __ Ldr(x3, MemOperand(current_frame, FrameDescription::frame_size_offset()));
270 __ Add(x6, current_frame, x3);
293 __ Ldr(x6, MemOperand(current_frame, FrameDescription::state_offset()));
311 __ Mov(last_output_frame, current_frame);
  /external/chromium_org/content/browser/speech/
audio_encoder.cc 37 unsigned current_frame,
51 unsigned current_frame,
  /external/chromium_org/ui/views/controls/
throbber.cc 80 const int current_frame = local
84 int image_offset = current_frame * image_size;
  /external/chromium_org/components/autofill/content/renderer/
password_autofill_agent.h 189 // If |provisionally_saved_forms_| contains a form for |current_frame| or its
192 const blink::WebFrame* current_frame);
password_autofill_agent.cc 641 const blink::WebFrame* current_frame) {
647 // The check that the returned frame is related to |current_frame| is mainly
653 if (current_frame == form_frame ||
654 current_frame->findChildByName(form_frame->assignedName())) {
    [all...]

Completed in 720 milliseconds

1 2