Home
last modified time | relevance | path

Searched refs:timestamp_ns (Results 1 – 18 of 18) sorted by relevance

/external/libvpx/libvpx/
Dwebmdec.cc43 webm_ctx->timestamp_ns = 0; in reset()
190 webm_ctx->timestamp_ns = block->GetTime(cluster); in webm_read_frame()
203 while (webm_ctx->timestamp_ns < 1000000000 && i < 50) { in webm_guess_framerate()
211 static_cast<int>(webm_ctx->timestamp_ns / 1000); in webm_guess_framerate()
218 webm_ctx->timestamp_ns = 0; in webm_guess_framerate()
Dwebmdec.h30 uint64_t timestamp_ns; member
/external/libaom/libaom/common/
Dwebmdec.cc45 webm_ctx->timestamp_ns = 0; in reset()
192 webm_ctx->timestamp_ns = block->GetTime(cluster); in webm_read_frame()
207 while (webm_ctx->timestamp_ns < 1000000000 && i < 50) { in webm_guess_framerate()
215 static_cast<int>(webm_ctx->timestamp_ns / 1000); in webm_guess_framerate()
223 webm_ctx->timestamp_ns = 0; in webm_guess_framerate()
Dwebmdec.h31 uint64_t timestamp_ns; member
/external/webrtc/talk/app/webrtc/java/jni/
Dandroidvideocapturer_jni.cc157 int64_t timestamp_ns) { in OnMemoryBufferFrame() argument
172 buffer, rotation, timestamp_ns); in OnMemoryBufferFrame()
178 int64_t timestamp_ns, in OnTextureFrame() argument
185 buffer, rotation, timestamp_ns); in OnTextureFrame()
Dandroidvideocapturer_jni.h66 int height, int rotation, int64_t timestamp_ns);
67 void OnTextureFrame(int width, int height, int rotation, int64_t timestamp_ns,
/external/perfetto/src/trace_processor/
Dproto_incremental_state.h120 int64_t timestamp_ns,
125 track_event_timestamp_ns_ = timestamp_ns;
/external/bcc/tools/
Dsslsniff.py211 start = event.timestamp_ns
212 time_s = (float(event.timestamp_ns - start)) / 1000000000
Dtrace.py510 def _time_off_str(cls, timestamp_ns): argument
511 return "%.6f" % (1e-9 * (timestamp_ns - cls.first_ts))
556 Probe._time_off_str(event.timestamp_ns)
Dmemleak.py454 if BPF.monotonic_time() - min_age_ns < info.timestamp_ns:
/external/kernel-headers/original/uapi/linux/
Dsync_file.h47 __u64 timestamp_ns; member
Dcn_proc.h66 __u64 __attribute__((aligned(8))) timestamp_ns; member
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h1556 uint64_t timestamp_ns, bool is_key);
1573 uint64_t timestamp_ns, uint64_t duration_ns);
1749 int TestFrame(uint64_t track_num, uint64_t timestamp_ns, bool key) const;
1753 bool MakeNewCluster(uint64_t timestamp_ns);
1758 bool DoNewClusterProcessing(uint64_t track_num, uint64_t timestamp_ns,
Dmkvmuxer.cc3498 uint64_t track_number, uint64_t timestamp_ns, in AddMetadata() argument
3507 frame.set_timestamp(timestamp_ns); in AddMetadata()
/external/libaom/libaom/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h1556 uint64_t timestamp_ns, bool is_key);
1573 uint64_t timestamp_ns, uint64_t duration_ns);
1749 int TestFrame(uint64_t track_num, uint64_t timestamp_ns, bool key) const;
1753 bool MakeNewCluster(uint64_t timestamp_ns);
1758 bool DoNewClusterProcessing(uint64_t track_num, uint64_t timestamp_ns,
Dmkvmuxer.cc3498 uint64_t track_number, uint64_t timestamp_ns, in AddMetadata() argument
3507 frame.set_timestamp(timestamp_ns); in AddMetadata()
/external/bcc/examples/lua/
Dmemleak.lua163 if now - min_age_ns >= tonumber(info.timestamp_ns) then
/external/bcc/tools/old/
Dmemleak.py250 if BPF.monotonic_time() - min_age_ns < info.timestamp_ns: