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:AV_RB24
(Results
1 - 25
of
65
) sorted by relevance
1
2
3
/third_party/ffmpeg/libavcodec/
H
A
D
dolby_e_parse.c
55
return
AV_RB24
(key) >> 24 - s->word_bits;
in parse_key()
83
put_bits(&pb, 20,
AV_RB24
(src) >> 4 ^ key);
in ff_dolby_e_convert_input()
88
AV_WB24(dst,
AV_RB24
(src) ^ key);
in ff_dolby_e_convert_input()
105
hdr =
AV_RB24
(buf);
in ff_dolby_e_parse_header()
H
A
D
aliaspixenc.c
85
pixel =
AV_RB24
(in_buf);
in encode_frame()
87
pixel ==
AV_RB24
(in_buf)) {
in encode_frame()
H
A
D
cinepak.c
282
chunk_size =
AV_RB24
(&data[1]) - 4;
in cinepak_decode_strip()
326
encoded_buf_size =
AV_RB24
(&s->data[1]);
in cinepak_predecode_check()
363
int strip_size =
AV_RB24
(data + 1);
in cinepak_predecode_check()
402
strip_size =
AV_RB24
(&s->data[1]) - 12;
in cinepak_decode()
H
A
D
bintext.c
80
s->palette[i] = 0xFF000000 | (
AV_RB24
(p) << 2) | ((
AV_RB24
(p) >> 4) & 0x30303);
in decode_init()
H
A
D
eatgv.c
88
size =
AV_RB24
(src);
in unpack()
299
s->palette[i] = 0xFFU << 24 |
AV_RB24
(buf);
in tgv_decode_frame()
H
A
D
tak.c
86
CRC =
AV_RB24
(buf + buf_size);
in ff_tak_check_crc()
H
A
D
hevc_mp4toannexb_bsf.c
104
AV_RB24
(ctx->par_in->extradata) == 1 ||
in hevc_mp4toannexb_init()
H
A
D
rl2.c
164
s->palette[i] = 0xFFU << 24 |
AV_RB24
(&avctx->extradata[6 + i * 3]);
in rl2_decode_init()
/third_party/ffmpeg/libavutil/avr32/
H
A
D
intreadwrite.h
64
#define
AV_RB24
AV_RB24
macro
65
static av_always_inline uint32_t
AV_RB24
(const void *p)
in AV_RB24()
function
/third_party/ffmpeg/libavformat/
H
A
D
swfdec.c
87
if (
AV_RB24
(p->buf) !=
AV_RB24
("CWS")
in swf_probe()
88
&&
AV_RB24
(p->buf) !=
AV_RB24
("FWS"))
in swf_probe()
91
if (
AV_RB24
(p->buf) ==
AV_RB24
("CWS")
in swf_probe()
436
if (alpha_bmp) colormap[i] = buf[3]<<24 |
AV_RB24
(buf + 4*i);
in swf_read_packet()
437
else colormap[i] = 0xffU <<24 |
AV_RB24
(buf + 3*i);
in swf_read_packet()
H
A
D
flacdec.c
113
samplerate =
AV_RB24
(st->codecpar->extradata + 10) >> 4;
in flac_read_header()
239
int size =
AV_RB24
(p->buf + 5);
in flac_probe()
242
int sample_rate =
AV_RB24
(p->buf + 18) >> 4;
in flac_probe()
H
A
D
oggparsevp8.c
56
st->sample_aspect_ratio.num =
AV_RB24
(p + 12);
in vp8_header()
57
st->sample_aspect_ratio.den =
AV_RB24
(p + 15);
in vp8_header()
H
A
D
loasdec.c
44
uint32_t header =
AV_RB24
(buf2);
in loas_probe()
H
A
D
hls_sample_encryption.c
161
if (nalu->length - i > 3 &&
AV_RB24
(&data[i]) == 0x000003) {
in remove_scep_3_bytes()
179
else if (ctx->buf_end - ctx->buf_ptr >= 3 &&
AV_RB24
(ctx->buf_ptr) == 0x000001)
in get_next_nal_unit()
189
else if (ctx->buf_end - ctx->buf_ptr >= 3 &&
AV_RB24
(ctx->buf_ptr) == 0x000001)
in get_next_nal_unit()
H
A
D
mpegvideodec.c
61
if (
AV_RB24
(ptr + j + 9) & 0xFFFFFE)
in mpegvideo_probe()
H
A
D
lmlm4.c
54
} else if (
AV_RB24
(buf + 8) == 0x000001) { /* PES Signal */
in lmlm4_probe()
H
A
D
mpl2dec.c
44
if (
AV_RB24
(ptr) == 0xefbbbf)
in mpl2_probe()
H
A
D
stldec.c
42
if (
AV_RB24
(ptr) == 0xEFBBBF)
in stl_probe()
H
A
D
oggparseflac.c
68
samplerate =
AV_RB24
(st->codecpar->extradata + 10) >> 4;
in flac_header()
H
A
D
microdvddec.c
45
if (
AV_RB24
(ptr) == 0xEFBBBF)
in microdvd_probe()
H
A
D
subviewerdec.c
44
if (
AV_RB24
(ptr) == 0xEFBBBF)
in subviewer_probe()
H
A
D
rawenc.c
363
AV_RB24
(pkt->data) != 0x000001)
in h264_check_bitstream()
386
AV_RB24
(pkt->data) != 0x000001)
in hevc_check_bitstream()
/third_party/ffmpeg/libavutil/
H
A
D
intreadwrite.h
101
# if defined(AV_RN24) && !defined(
AV_RB24
)
102
# define
AV_RB24
(p) AV_RN24(p)
macro
103
# elif !defined(AV_RN24) && defined(
AV_RB24
)
104
# define AV_RN24(p)
AV_RB24
(p)
443
#ifndef
AV_RB24
444
# define
AV_RB24
(x) \
macro
/third_party/ffmpeg/libavfilter/
H
A
D
vf_stereo3d.c
649
AV_WB24(&dst[x],
AV_RB24
(&src[x * 2]));
in interleave_cols_to_any()
977
AV_WB24(&dst[x ], (b&1) == (y&1) ?
AV_RB24
(&left[p*m]) :
AV_RB24
(&right[p*m]));
in filter_frame()
978
AV_WB24(&dst[x+3], (b&1) != (y&1) ?
AV_RB24
(&left[p*m]) :
AV_RB24
(&right[p*m]));
in filter_frame()
1034
AV_WB24(&dst[x ], b&1 ?
AV_RB24
(&left[p*m]) :
AV_RB24
(&right[p*m]));
in filter_frame()
1035
AV_WB24(&dst[x+3], !(b&1) ?
AV_RB24
(&left[p*m]) :
AV_RB24
(&right[p*m]));
in filter_frame()
H
A
D
vf_hflip_init.h
62
int32_t v =
AV_RB24
(in);
in hflip_b24_c()
Completed in 12 milliseconds
1
2
3