OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:max_data_bytes
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/opus/src/src/
opus_multistream_encoder.c
674
opus_int32
max_data_bytes
,
745
if (
max_data_bytes
< 4*st->layout.nb_streams-1)
837
curr_max =
max_data_bytes
- tot_size;
852
len = opus_repacketizer_out_range_impl(&rp, 0, opus_repacketizer_get_nb_frames(&rp), data,
max_data_bytes
-tot_size, s != st->layout.nb_streams-1);
911
opus_int32
max_data_bytes
915
pcm, frame_size, data,
max_data_bytes
, 16, downmix_int);
924
opus_int32
max_data_bytes
928
pcm, frame_size, data,
max_data_bytes
, 16, downmix_float);
940
opus_int32
max_data_bytes
944
pcm, frame_size, data,
max_data_bytes
, 24, downmix_float)
[
all
...]
opus_encoder.c
543
static opus_int32 user_bitrate_to_bitrate(OpusEncoder *st, int frame_size, int
max_data_bytes
)
549
return
max_data_bytes
*8*st->Fs/frame_size;
985
opus_int32
max_data_bytes
; /* Max number of bytes we're allowed to use */
local
996
max_data_bytes
= IMIN(1276, out_data_bytes);
1002
||
max_data_bytes
<=0
1063
st->bitrate_bps = user_bitrate_to_bitrate(st, frame_size,
max_data_bytes
);
1066
if (
max_data_bytes
<3 || st->bitrate_bps < 3*frame_rate*8
1067
|| (frame_rate<50 && (
max_data_bytes
*frame_rate<300 || st->bitrate_bps < 2400)))
[
all
...]
/external/chromium_org/media/audio/
audio_input_unittest.cc
23
explicit TestInputCallback(int
max_data_bytes
)
26
max_data_bytes_(
max_data_bytes
) {
/external/chromium_org/third_party/opus/src/include/
opus_multistream.h
365
* least \a
max_data_bytes
.
366
* @param [in]
max_data_bytes
<tt>opus_int32</tt>: Size of the allocated
382
opus_int32
max_data_bytes
410
* least \a
max_data_bytes
.
411
* @param [in]
max_data_bytes
<tt>opus_int32</tt>: Size of the allocated
427
opus_int32
max_data_bytes
[
all
...]
opus.h
251
* least \a
max_data_bytes
.
252
* @param [in]
max_data_bytes
<tt>opus_int32</tt>: Size of the allocated
268
opus_int32
max_data_bytes
292
* least \a
max_data_bytes
.
293
* @param [in]
max_data_bytes
<tt>opus_int32</tt>: Size of the allocated
309
opus_int32
max_data_bytes
[
all
...]
Completed in 102 milliseconds