Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:HST_USECOND
(Results
1 - 6
of
6
) sorted by relevance
/foundation/multimedia/media_foundation/interface/inner_api/plugin/
H
A
D
plugin_time.h
25
constexpr int
HST_USECOND
= ((int64_t)1000 * HST_NSECOND);
member
26
constexpr int HST_MSECOND = ((int64_t)1000 *
HST_USECOND
);
42
return hTime /
HST_USECOND
;
in HstTime2Us()
47
int64_t ms = hTime /
HST_USECOND
;
in HstTime2Us32()
56
if (INT64_MAX /
HST_USECOND
< us || INT64_MIN /
HST_USECOND
> us) { // overflow
in Us2HstTime()
59
hTime = us *
HST_USECOND
;
in Us2HstTime()
93
return us /
HST_USECOND
;
in Us2Ms()
98
return ms *
HST_USECOND
;
in Ms2Us()
/foundation/multimedia/media_foundation/engine/include/plugin/common/
H
A
D
plugin_time.h
25
#define
HST_USECOND
((int64_t)1000 * HST_NSECOND)
macro
26
#define HST_MSECOND ((int64_t)1000 *
HST_USECOND
)
42
return hTime /
HST_USECOND
;
in HstTime2Us()
47
if (INT64_MAX /
HST_USECOND
< us || INT64_MIN /
HST_USECOND
> us) { // overflow
in Us2HstTime()
50
hTime = us *
HST_USECOND
;
in Us2HstTime()
/foundation/multimedia/media_foundation/src/common/
H
A
D
plugin_time.h
25
#define
HST_USECOND
((int64_t)1000 * HST_NSECOND)
macro
26
#define HST_MSECOND ((int64_t)1000 *
HST_USECOND
)
42
return hTime /
HST_USECOND
;
in HstTime2Us()
47
if (INT64_MAX /
HST_USECOND
< us || INT64_MIN /
HST_USECOND
> us) { // overflow
in Us2HstTime()
50
hTime = us *
HST_USECOND
;
in Us2HstTime()
/foundation/multimedia/av_codec/services/media_engine/modules/sink/
H
A
D
video_sink.cpp
177
if (std::abs(deltaTimeAccu_) < 5 *
HST_USECOND
) { // 5ms
in CheckBufferLatenessMayWait()
205
} else if (diff > 0 && Plugins::HstTime2Ms(diff *
HST_USECOND
) > 40) { // > 40ms, buffer is late
in CheckBufferLatenessMayWait()
H
A
D
audio_sink.cpp
39
constexpr uint64_t defaultValue = 120 *
HST_USECOND
;
in GetAudioLatencyFixDelay()
/foundation/multimedia/av_codec/interfaces/inner_api/native/
H
A
D
audio_sink.h
68
static const int64_t kMinAudioClockUpdatePeriodUs = 20 *
HST_USECOND
;
Completed in 4 milliseconds