Searched defs:timebase (Results 26 - 47 of 47) sorted by relevance

12

/external/chromium_org/cc/output/
H A Doutput_surface.cc74 void OutputSurface::CommitVSyncParameters(base::TimeTicks timebase, argument
78 "timebase",
79 (timebase - base::TimeTicks()).InSecondsF(),
82 client_->CommitVSyncParameters(timebase, interval);
/external/chromium_org/content/browser/media/capture/
H A Dvideo_capture_oracle.cc400 // Compute the |timebase| upon which to determine the |frame_timestamp_|.
403 // the timebase by a small amount to spread out the entire correction over
410 base::TimeTicks timebase = event_time - sequence_offset_ - advancement; local
412 const base::TimeDelta drift = recorded_frame_timestamp_ - timebase;
417 timebase = recorded_frame_timestamp_ - (drift / correct_over_num_frames);
432 frame_timestamp_ = timebase + sequence_offset_;
/external/chromium_org/content/common/gpu/
H A Dimage_transport_surface.cc125 base::TimeTicks timebase, base::TimeDelta interval) {
127 timebase,
124 SendUpdateVSyncParameters( base::TimeTicks timebase, base::TimeDelta interval) argument
/external/chromium_org/content/renderer/gpu/
H A Dcompositor_output_surface.cc216 base::TimeTicks timebase,
219 CommitVSyncParameters(timebase, interval);
215 OnUpdateVSyncParametersFromBrowser( base::TimeTicks timebase, base::TimeDelta interval) argument
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dencode_perf_test.cc128 const vpx_rational timebase = { 33333333, 1000000000 }; local
129 cfg_.g_timebase = timebase;
140 timebase.den, timebase.num, 0,
H A Derror_resilience_test.cc149 const vpx_rational timebase = { 33333333, 1000000000 }; local
150 cfg_.g_timebase = timebase;
157 timebase.den, timebase.num, 0, 30);
184 const vpx_rational timebase = { 33333333, 1000000000 }; local
185 cfg_.g_timebase = timebase;
194 timebase.den, timebase.num, 0, 40);
H A Dvideo_source.h124 // Get the timebase for the stream
125 virtual vpx_rational_t timebase() const = 0;
162 virtual vpx_rational_t timebase() const { function in class:libvpx_test::DummyVideoSource
/external/chromium_org/third_party/webrtc/base/
H A Dtimeutils.cc40 static mach_timebase_info_data_t timebase; local
41 if (timebase.denom == 0) {
42 // Get the timebase if this is the first time we run.
44 if (mach_timebase_info(&timebase) != KERN_SUCCESS) {
48 // Use timebase to convert absolute time tick units into nanoseconds.
49 ticks = mach_absolute_time() * timebase.numer / timebase.denom;
/external/libvpx/libvpx/test/
H A Derror_resilience_test.cc149 const vpx_rational timebase = { 33333333, 1000000000 }; local
150 cfg_.g_timebase = timebase;
157 timebase.den, timebase.num, 0, 30);
184 const vpx_rational timebase = { 33333333, 1000000000 }; local
185 cfg_.g_timebase = timebase;
194 timebase.den, timebase.num, 0, 40);
H A Dvideo_source.h74 // Get the timebase for the stream
75 virtual vpx_rational_t timebase() const = 0;
112 virtual vpx_rational_t timebase() const { function in class:libvpx_test::DummyVideoSource
/external/webrtc/src/system_wrappers/interface/
H A Dtick_util.h179 static mach_timebase_info_data_t timebase; local
180 if (timebase.denom == 0) {
181 // Get the timebase if this is the first time we run.
183 kern_return_t retval = mach_timebase_info(&timebase);
190 // Use timebase to convert absolute time tick units into nanoseconds.
191 result._ticks = mach_absolute_time() * timebase.numer / timebase.denom;
/external/chromium_org/cc/scheduler/
H A Dscheduler.cc31 base::TimeTicks timebase,
33 time_source_->SetTimebaseAndInterval(timebase, interval);
139 void Scheduler::CommitVSyncParameters(base::TimeTicks timebase, argument
146 synthetic_begin_frame_source_->CommitVSyncParameters(timebase, interval);
271 base::TimeTicks timebase = std::max(begin_impl_frame_args_.frame_time, local
273 int64 intervals = 1 + ((now - timebase) / begin_impl_frame_args_.interval);
274 return timebase + (begin_impl_frame_args_.interval * intervals);
30 CommitVSyncParameters( base::TimeTicks timebase, base::TimeDelta interval) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Donyx.h104 struct vpx_rational timebase; member in struct:__anon13063
/external/chromium_org/ui/gl/
H A Dgl_surface_glx.cc296 void PendingCallbackRunner(const base::TimeTicks timebase, argument
299 pending_callback_->Run(timebase, interval);
/external/libvpx/libvpx/vp8/common/
H A Donyx.h104 struct vpx_rational timebase; member in struct:__anon24854
/external/chromium_org/content/browser/compositor/
H A Ddelegated_frame_host.cc888 base::TimeTicks timebase,
890 vsync_timebase_ = timebase;
894 host->UpdateVSyncParameters(timebase, interval);
887 OnUpdateVSyncParameters( base::TimeTicks timebase, base::TimeDelta interval) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/
H A Dvp9_cx_iface.c718 // Convert duration parameter from stream timebase to microseconds.
805 static int64_t timebase_units_to_ticks(const vpx_rational_t *timebase, argument
807 return n * TICKS_PER_SEC * timebase->num / timebase->den;
810 static int64_t ticks_to_timebase_units(const vpx_rational_t *timebase, argument
812 const int64_t round = TICKS_PER_SEC * timebase->num / 2 - 1;
813 return (n * timebase->den + round) / timebase->num / TICKS_PER_SEC;
841 const vpx_rational_t *const timebase = &ctx->cfg.g_timebase; local
887 int64_t dst_time_stamp = timebase_units_to_ticks(timebase, pt
[all...]
/external/chromium_org/cc/trees/
H A Dthread_proxy.cc327 void ThreadProxy::CommitVSyncParameters(base::TimeTicks timebase, argument
329 impl().scheduler->CommitVSyncParameters(timebase, interval);
H A Dlayer_tree_host_impl.cc2102 void LayerTreeHostImpl::CommitVSyncParameters(base::TimeTicks timebase, argument
2104 client_->CommitVSyncParameters(timebase, interval);
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_host_impl.cc1256 void RenderWidgetHostImpl::UpdateVSyncParameters(base::TimeTicks timebase, argument
1258 Send(new ViewMsg_UpdateVSyncParameters(GetRoutingID(), timebase, interval));
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvpxenc.c239 static const arg_def_t timebase = ARG_DEF(NULL, "timebase", 1, variable
253 &timebase, &framerate,
467 fprintf(stderr, "\nStream timebase (--timebase):\n"
967 /* Change the default timebase to a high enough value so that the
1073 } else if (arg_match(&arg, &timebase, argi)) {
/external/libvpx/libvpx/
H A Dvpxenc.c269 static const arg_def_t timebase = ARG_DEF(NULL, "timebase", 1, variable
278 &width, &height, &stereo_mode, &timebase, &framerate,
454 fprintf(stderr, "\nStream timebase (--timebase):\n"
829 /* Change the default timebase to a high enough value so that the
918 } else if (arg_match(&arg, &timebase, argi)) {

Completed in 5037 milliseconds

12