OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FLAC__MAX_CHANNELS
(Results
1 - 4
of
4
) sorted by null
/external/flac/include/FLAC/
format.h
105
#define
FLAC__MAX_CHANNELS
(8u)
474
FLAC__Subframe subframes[
FLAC__MAX_CHANNELS
];
[
all
...]
/external/flac/libFLAC/
stream_encoder.c
103
FLAC__int32 *data[
FLAC__MAX_CHANNELS
];
334
FLAC__int32 *integer_signal[
FLAC__MAX_CHANNELS
]; /* the integer version of the input signal */
337
FLAC__real *real_signal[
FLAC__MAX_CHANNELS
]; /* (@@@ currently unused) the floating-point version of the input signal */
342
unsigned subframe_bps[
FLAC__MAX_CHANNELS
]; /* the effective bits per sample of the input signal (stream bps - wasted bits) */
344
FLAC__int32 *residual_workspace[
FLAC__MAX_CHANNELS
][2]; /* each channel has a candidate and best workspace where the subframe residual signals will be stored */
346
FLAC__Subframe subframe_workspace[
FLAC__MAX_CHANNELS
][2];
348
FLAC__Subframe *subframe_workspace_ptr[
FLAC__MAX_CHANNELS
][2];
350
FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents_workspace[
FLAC__MAX_CHANNELS
][2];
351
FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents_workspace_mid_side[
FLAC__MAX_CHANNELS
][2];
352
FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents_workspace_ptr[
FLAC__MAX_CHANNELS
][2]
[
all
...]
stream_decoder.c
174
FLAC__int32 *output[
FLAC__MAX_CHANNELS
];
175
FLAC__int32 *residual[
FLAC__MAX_CHANNELS
]; /* WATCHOUT: these are the aligned pointers; the real pointers that should be free()'d are residual_unaligned[] below */
176
FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents[
FLAC__MAX_CHANNELS
];
192
FLAC__int32 *residual_unaligned[
FLAC__MAX_CHANNELS
];
321
for(i = 0; i <
FLAC__MAX_CHANNELS
; i++) {
330
for(i = 0; i <
FLAC__MAX_CHANNELS
; i++)
358
for(i = 0; i <
FLAC__MAX_CHANNELS
; i++)
690
for(i = 0; i <
FLAC__MAX_CHANNELS
; i++) {
[
all
...]
stream_encoder_framing.c
291
FLAC__ASSERT(header->channels > 0 && header->channels <= (1u << FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN) && header->channels <=
FLAC__MAX_CHANNELS
);
Completed in 248 milliseconds