Searched defs:timebase (Results 1 - 14 of 14) sorted by relevance

/external/libvpx/libvpx/test/
H A Dvp9_lossless_test.cc68 const vpx_rational timebase = { 33333333, 1000000000 }; local
69 cfg_.g_timebase = timebase;
79 timebase.den, timebase.num, 0, 10);
89 cfg_.g_timebase = video.timebase();
103 const vpx_rational timebase = { 33333333, 1000000000 }; local
104 cfg_.g_timebase = timebase;
115 timebase.den, timebase.num, 0, 10);
H A Daltref_test.cc55 const vpx_rational timebase = { 33333333, 1000000000 }; local
56 cfg_.g_timebase = timebase;
61 timebase.den, timebase.num, 0, 30);
118 const vpx_rational timebase = { 1, 30 }; local
126 timebase.den, timebase.num, 0, 30);
132 const vpx_rational timebase = { 1, 30 }; local
140 timebase.den, timebase
[all...]
H A Dtile_independence_test.cc84 const vpx_rational timebase = { 33333333, 1000000000 }; local
85 cfg_.g_timebase = timebase;
91 timebase.den, timebase.num, 0, 30);
H A Dcq_test.cc106 const vpx_rational timebase = { 33333333, 1000000000 }; local
107 cfg_.g_timebase = timebase;
113 timebase.den, timebase.num, 0, 30);
H A Dy4m_video_source.h72 virtual vpx_rational_t timebase() const { function in class:libvpx_test::Y4mVideoSource
H A Dyuv_video_source.h68 virtual vpx_rational_t timebase() const { function in class:libvpx_test::YUVVideoSource
H A Ddecode_perf_test.cc210 const vpx_rational timebase = { 33333333, 1000000000 }; local
211 cfg_.g_timebase = timebase;
219 kVP9EncodePerfTestVectors[i].height, timebase.den, timebase.num, 0,
H A Dencode_perf_test.cc139 const vpx_rational timebase = { 33333333, 1000000000 }; local
140 cfg_.g_timebase = timebase;
149 kVP9EncodePerfTestVectors[i].height, timebase.den, timebase.num, 0,
H A Dvideo_source.h123 // Get the timebase for the stream
124 virtual vpx_rational_t timebase() const = 0;
160 virtual vpx_rational_t timebase() const { function in class:libvpx_test::DummyVideoSource
H A Derror_resilience_test.cc197 const vpx_rational timebase = { 33333333, 1000000000 }; local
198 cfg_.g_timebase = timebase;
205 timebase.den, timebase.num, 0, 30);
232 const vpx_rational timebase = { 33333333, 1000000000 }; local
233 cfg_.g_timebase = timebase;
242 timebase.den, timebase.num, 0, 40);
294 const vpx_rational timebase = { 33333333, 1000000000 }; local
295 cfg_.g_timebase = timebase;
341 const vpx_rational timebase = { 33333333, 1000000000 }; local
[all...]
/external/webrtc/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/vp8/common/
H A Donyx.h92 struct vpx_rational timebase; member in struct:__anon11953
/external/libvpx/libvpx/vp9/
H A Dvp9_cx_iface.c946 // Convert duration parameter from stream timebase to microseconds.
1032 static int64_t timebase_units_to_ticks(const vpx_rational_t *timebase, argument
1034 return n * TICKS_PER_SEC * timebase->num / timebase->den;
1037 static int64_t ticks_to_timebase_units(const vpx_rational_t *timebase, argument
1039 const int64_t round = (int64_t)TICKS_PER_SEC * timebase->num / 2 - 1;
1040 return (n * timebase->den + round) / timebase->num / TICKS_PER_SEC;
1071 const vpx_rational_t *const timebase = &ctx->cfg.g_timebase; local
1149 int64_t dst_time_stamp = timebase_units_to_ticks(timebase, pt
[all...]
/external/libvpx/libvpx/
H A Dvpxenc.c247 static const arg_def_t timebase = ARG_DEF( variable
248 NULL, "timebase", 1, "Output timestamp precision (fractional seconds)");
267 &timebase,
568 "\nStream timebase (--timebase):\n"
1063 /* Change the default timebase to a high enough value so that the
1173 } else if (arg_match(&arg, &timebase, argi)) {

Completed in 253 milliseconds