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:audio_frame_size
(Results
1 - 4
of
4
) sorted by relevance
/third_party/ffmpeg/libavformat/
H
A
D
mvi.c
36
uint64_t
audio_frame_size
;
member
98
mvi->
audio_frame_size
= ((uint64_t)audio_data_size << MVI_FRAC_BITS) / frames_count;
in read_header()
99
if (mvi->
audio_frame_size
<= 1 << MVI_FRAC_BITS - 1) {
in read_header()
106
mvi->audio_size_counter = (ast->codecpar->sample_rate * 830 / mvi->
audio_frame_size
- 1) * mvi->
audio_frame_size
;
in read_header()
122
if (mvi->audio_size_counter + 512 > UINT64_MAX - mvi->
audio_frame_size
||
in read_packet()
123
mvi->audio_size_counter + 512 + mvi->
audio_frame_size
>= ((uint64_t)INT32_MAX) << MVI_FRAC_BITS)
in read_packet()
126
count = (mvi->audio_size_counter + mvi->
audio_frame_size
+ 512) >> MVI_FRAC_BITS;
in read_packet()
135
mvi->audio_size_counter += mvi->
audio_frame_size
- (count << MVI_FRAC_BITS);
in read_packet()
H
A
D
dsicin.c
41
int
audio_frame_size
;
member
48
int
audio_frame_size
;
member
88
hdr->
audio_frame_size
= avio_rl16(pb);
in cin_read_file_header()
152
hdr->
audio_frame_size
= avio_rl32(pb);
in cin_read_frame_header()
159
if (hdr->video_frame_size < 0 || hdr->
audio_frame_size
< 0)
in cin_read_frame_header()
213
cin->audio_buffer_size = hdr->
audio_frame_size
;
in cin_read_packet()
H
A
D
riffenc.c
278
int
audio_frame_size
;
in ff_parse_specific_params()
local
280
audio_frame_size
= av_get_audio_frame_duration2(par, 0);
in ff_parse_specific_params()
281
if (!
audio_frame_size
)
in ff_parse_specific_params()
282
audio_frame_size
= par->frame_size;
in ff_parse_specific_params()
285
if (
audio_frame_size
&& par->sample_rate) {
in ff_parse_specific_params()
286
*au_scale =
audio_frame_size
;
in ff_parse_specific_params()
H
A
D
mxfenc.c
1748
int
audio_frame_size
= 0;
in mxf_write_index_table_segment()
local
1819
if (!
audio_frame_size
) {
in mxf_write_index_table_segment()
1820
audio_frame_size
= sc->frame_size;
in mxf_write_index_table_segment()
1821
audio_frame_size
+= klv_fill_size(
audio_frame_size
);
in mxf_write_index_table_segment()
1824
avio_wb32(pb, (i-1)*
audio_frame_size
); // element delta
in mxf_write_index_table_segment()
Completed in 7 milliseconds