HomeSort by relevance Sort by last modified time
    Searched defs:timebase (Results 1 - 22 of 22) sorted by null

  /external/curl/lib/
timeval.c 100 static mach_timebase_info_data_t timebase; local
104 if(0 == timebase.denom)
105 (void) mach_timebase_info(&timebase);
108 usecs *= timebase.numer;
109 usecs /= timebase.denom;
  /external/libvpx/libvpx/test/
vp9_lossless_test.cc 68 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);
tile_independence_test.cc 84 const vpx_rational timebase = { 33333333, 1000000000 }; local
85 cfg_.g_timebase = timebase;
91 timebase.den, timebase.num, 0, 30);
altref_test.cc 55 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.num, 0, 30)
    [all...]
yuv_video_source.h 63 // Models a stream where Timebase = 1/FPS, so pts == frame.
68 virtual vpx_rational_t timebase() const { function in class:libvpx_test::YUVVideoSource
cq_test.cc 106 const vpx_rational timebase = { 33333333, 1000000000 }; local
107 cfg_.g_timebase = timebase;
113 timebase.den, timebase.num, 0, 30);
decode_perf_test.cc 210 const vpx_rational timebase = { 33333333, 1000000000 }; local
211 cfg_.g_timebase = timebase;
219 kVP9EncodePerfTestVectors[i].height, timebase.den, timebase.num, 0,
encode_perf_test.cc 139 const vpx_rational timebase = { 33333333, 1000000000 }; local
140 cfg_.g_timebase = timebase;
149 kVP9EncodePerfTestVectors[i].height, timebase.den, timebase.num, 0,
y4m_video_source.h 67 // Models a stream where Timebase = 1/FPS, so pts == frame.
72 virtual vpx_rational_t timebase() const { function in class:libvpx_test::Y4mVideoSource
error_resilience_test.cc 197 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...]
video_source.h 123 // Get the timebase for the stream
124 virtual vpx_rational_t timebase() const = 0;
155 // Models a stream where Timebase = 1/FPS, so pts == frame.
160 virtual vpx_rational_t timebase() const { function in class:libvpx_test::DummyVideoSource
  /frameworks/av/media/libaaudio/src/legacy/
AudioStreamLegacy.cpp 170 int timebase; local
173 timebase = ExtendedTimestamp::TIMEBASE_BOOTTIME;
176 timebase = ExtendedTimestamp::TIMEBASE_MONOTONIC;
186 timebase, &location);
  /external/webrtc/webrtc/base/
timeutils.cc 40 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/
onyx.h 92 struct vpx_rational timebase; member in struct:__anon26124
  /external/libvpx/libvpx/vp9/
vp9_cx_iface.c 1093 const vpx_rational_t *const timebase = &ctx->cfg.g_timebase; local
    [all...]
  /external/libvpx/libvpx/
vpxenc.c 250 static const arg_def_t timebase = ARG_DEF( variable
251 NULL, "timebase", 1, "Output timestamp precision (fractional seconds)");
270 &timebase,
586 "\nStream timebase (--timebase):\n"
    [all...]
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/27/
android.jar 
  /prebuilts/sdk/28/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_28/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 250 milliseconds