OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:output_channels
(Results
1 - 8
of
8
) sorted by null
/external/pdfium/samples/
image_diff_png.cc
89
output_channels
(0),
99
int
output_channels
;
member in class:image_diff_png::__anon29263::PngDecoderState
212
state->
output_channels
= 3;
216
state->
output_channels
= 4;
220
state->
output_channels
= 4;
230
state->
output_channels
= 3;
234
state->
output_channels
= 4;
238
state->
output_channels
= 4;
250
state->width * state->
output_channels
* state->height);
266
unsigned char* dest = &base[state->width * state->
output_channels
* row_num]
[
all
...]
/device/google/dragon/audio/hal/
cras_dsp_pipeline.c
127
int
output_channels
;
member in struct:pipeline
454
pipeline->
output_channels
= ARRAY_COUNT(
456
if (pipeline->
output_channels
> pipeline->input_channels) {
745
return pipeline->
output_channels
;
823
unsigned int
output_channels
= pipeline->
output_channels
;
local
825
float *sink[
output_channels
];
838
for (i = 0; i <
output_channels
; i++)
854
dsp_util_interleave(sink, target,
output_channels
, chunk);
856
target += chunk *
output_channels
;
[
all
...]
/frameworks/av/media/libaudioprocessing/tests/
test-resampler.cpp
331
int
output_channels
= channels > 2 ? channels : 2; // output is at least stereo samples
local
332
size_t output_framesize =
output_channels
* (useFloat ? sizeof(float) : sizeof(int32_t));
453
resampler->resample((int*) output_vaddr +
output_channels
*i, thisFrames, &provider);
470
reinterpret_cast<float*>(output_vaddr), output_frames *
output_channels
);
local
484
int32_t s = out[i *
output_channels
+ j] + roundVal; // add offset here
/frameworks/av/media/libaudioprocessing/
AudioResamplerDyn.cpp
500
// TODO Mono -> Mono is not supported.
OUTPUT_CHANNELS
reflects minimum of stereo out.
501
const int
OUTPUT_CHANNELS
= (CHANNELS < 2) ? 2 : CHANNELS;
509
size_t outputSampleCount = outFrameCount *
OUTPUT_CHANNELS
;
591
outputIndex +=
OUTPUT_CHANNELS
;
624
return outputIndex /
OUTPUT_CHANNELS
;
/hardware/libhardware/modules/audio_remote_submix/
audio_hw.cpp
329
const uint32_t
output_channels
= audio_channel_count_from_out_mask(output_config->channel_mask);
local
330
if (input_channels !=
output_channels
) {
332
input_channels,
output_channels
);
[
all
...]
/frameworks/av/media/libeffects/testlibs/
EffectReverb.h
43
#define
OUTPUT_CHANNELS
AUDIO_CHANNEL_OUT_STEREO
EffectReverb.c
523
|| pConfig->outputCfg.channels !=
OUTPUT_CHANNELS
[
all
...]
/external/flac/libFLAC/
stream_decoder.c
151
unsigned output_capacity,
output_channels
;
member in struct:FLAC__StreamDecoderPrivate
299
decoder->private_->
output_channels
= 0;
681
decoder->private_->
output_channels
= 0;
[
all
...]
Completed in 204 milliseconds