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:bcd2uint
(Results
1 - 3
of
3
) sorted by relevance
/third_party/ffmpeg/libavfilter/
H
A
D
vf_readvitc.c
139
static unsigned
bcd2uint
(uint8_t high, uint8_t low)
in bcd2uint()
function
148
unsigned hh =
bcd2uint
(line[7] & 0x03, line[6] & 0x0f); // 6-bit hours
in make_vitc_tc_string()
149
unsigned mm =
bcd2uint
(line[5] & 0x07, line[4] & 0x0f); // 7-bit minutes
in make_vitc_tc_string()
150
unsigned ss =
bcd2uint
(line[3] & 0x07, line[2] & 0x0f); // 7-bit seconds
in make_vitc_tc_string()
151
unsigned ff =
bcd2uint
(line[1] & 0x03, line[0] & 0x0f); // 6-bit frames
in make_vitc_tc_string()
/third_party/ffmpeg/libavutil/
H
A
D
timecode.c
129
static unsigned
bcd2uint
(uint8_t bcd)
in bcd2uint()
function
140
unsigned hh =
bcd2uint
(tcsmpte & 0x3f); // 6-bit hours
in av_timecode_make_smpte_tc_string2()
141
unsigned mm =
bcd2uint
(tcsmpte>>8 & 0x7f); // 7-bit minutes
in av_timecode_make_smpte_tc_string2()
142
unsigned ss =
bcd2uint
(tcsmpte>>16 & 0x7f); // 7-bit seconds
in av_timecode_make_smpte_tc_string2()
143
unsigned ff =
bcd2uint
(tcsmpte>>24 & 0x3f); // 6-bit frames
in av_timecode_make_smpte_tc_string2()
/third_party/ffmpeg/libavcodec/
H
A
D
utils.c
1073
static unsigned
bcd2uint
(uint8_t bcd)
in bcd2uint()
function
1112
unsigned hh =
bcd2uint
(tcsmpte & 0x3f); // 6-bit hours
in ff_alloc_timecode_sei()
1113
unsigned mm =
bcd2uint
(tcsmpte>>8 & 0x7f); // 7-bit minutes
in ff_alloc_timecode_sei()
1114
unsigned ss =
bcd2uint
(tcsmpte>>16 & 0x7f); // 7-bit seconds
in ff_alloc_timecode_sei()
1115
unsigned ff =
bcd2uint
(tcsmpte>>24 & 0x3f); // 6-bit frames
in ff_alloc_timecode_sei()
Completed in 3 milliseconds