/third_party/ffmpeg/libavcodec/ |
H A D | wma.h | 48 #define MAX_CHANNELS 2 macro 89 int high_band_coded[MAX_CHANNELS][HIGH_BAND_MAX_SIZE]; 90 int high_band_values[MAX_CHANNELS][HIGH_BAND_MAX_SIZE]; 112 uint8_t channel_coded[MAX_CHANNELS]; ///< true if channel is coded 113 int exponents_bsize[MAX_CHANNELS]; ///< log2 ratio frame/exp. length 114 DECLARE_ALIGNED(32, float, exponents)[MAX_CHANNELS][BLOCK_MAX_SIZE]; 115 float max_exponent[MAX_CHANNELS]; 116 WMACoef coefs1[MAX_CHANNELS][BLOCK_MAX_SIZE]; 117 DECLARE_ALIGNED(32, float, coefs)[MAX_CHANNELS][BLOCK_MAX_SIZE]; 122 DECLARE_ALIGNED(32, float, frame_out)[MAX_CHANNELS][BLOCK_MAX_SIZ [all...] |
H A D | dolby_e.h | 31 #define MAX_CHANNELS 8 macro 48 int ch_size[MAX_CHANNELS]; 52 int rev_id[MAX_CHANNELS]; 53 int begin_gain[MAX_CHANNELS]; 54 int end_gain[MAX_CHANNELS];
|
H A D | mlpdsp.c | 56 sample_buffer += MAX_CHANNELS; in mlp_filter_channel() 87 bypassed_lsbs += MAX_CHANNELS; in ff_mlp_rematrix_channel() 88 samples += MAX_CHANNELS; in ff_mlp_rematrix_channel() 102 int32_t (*sample_buffer)[MAX_CHANNELS], in ff_mlp_pack_output()
|
H A D | binkaudio.c | 48 #define MAX_CHANNELS 2 macro 49 #define BINK_BLOCK_MAX_SIZE (MAX_CHANNELS << 11) 80 int max_channels = avctx->codec->id == AV_CODEC_ID_BINKAUDIO_RDFT ? MAX_CHANNELS : MAX_DCT_CHANNELS; in decode_init() 117 s->block_size = (s->frame_len - s->overlap_len) * FFMIN(MAX_CHANNELS, s->channels); in decode_init() 332 FFMIN(MAX_CHANNELS, s->channels - s->ch_offset), s->ch_offset)) { in binkaudio_receive_frame() 337 s->ch_offset += MAX_CHANNELS; in binkaudio_receive_frame() 349 frame->nb_samples = s->block_size / FFMIN(avctx->ch_layout.nb_channels, MAX_CHANNELS); in binkaudio_receive_frame()
|
H A D | mlpdsp.h | 42 int32_t (*sample_buffer)[MAX_CHANNELS], 71 int32_t (*sample_buffer)[MAX_CHANNELS],
|
H A D | dcaenc.c | 46 #define MAX_CHANNELS 6 macro 84 int32_t prediction_mode[MAX_CHANNELS][DCAENC_SUBBANDS]; 85 int32_t adpcm_history[MAX_CHANNELS][DCAENC_SUBBANDS][DCA_ADPCM_COEFFS * 2]; 86 int32_t history[MAX_CHANNELS][512]; /* This is a circular buffer */ 87 int32_t *subband[MAX_CHANNELS][DCAENC_SUBBANDS]; 88 int32_t quantized[MAX_CHANNELS][DCAENC_SUBBANDS][SUBBAND_SAMPLES]; 89 int32_t peak_cb[MAX_CHANNELS][DCAENC_SUBBANDS]; 90 int32_t diff_peak_cb[MAX_CHANNELS][DCAENC_SUBBANDS]; ///< expected peak of residual signal 93 int32_t bit_allocation_sel[MAX_CHANNELS]; 94 int abits[MAX_CHANNELS][DCAENC_SUBBAND [all...] |
H A D | aac.h | 49 #define MAX_CHANNELS 64 macro 216 int exclude_mask[MAX_CHANNELS]; ///< Channels to be excluded from DRC processing. 348 SingleChannelElement *output_element[MAX_CHANNELS]; ///< Points to each SingleChannelElement
|
H A D | mlpdec.c | 75 uint8_t ch_assign[MAX_CHANNELS]; 83 ChannelParams channel_params[MAX_CHANNELS]; 117 DECLARE_ALIGNED(32, int32_t, matrix_coeff)[MAX_MATRICES][MAX_CHANNELS]; 123 uint8_t quant_step_size[MAX_CHANNELS]; 131 int8_t output_shift[MAX_CHANNELS]; 170 int filter_changed[MAX_CHANNELS][NUM_FILTERS]; 173 int8_t bypassed_lsbs[MAX_BLOCKSIZE][MAX_CHANNELS]; 174 DECLARE_ALIGNED(32, int32_t, sample_buffer)[MAX_BLOCKSIZE][MAX_CHANNELS];
|
H A D | mlpenc.c | 66 int32_t forco[MAX_MATRICES][MAX_CHANNELS+2]; ///< forward coefficients 67 int32_t coeff[MAX_MATRICES][MAX_CHANNELS+2]; ///< decoding coefficients 68 uint8_t fbits[MAX_CHANNELS]; ///< fraction bits 70 int8_t shift[MAX_CHANNELS]; ///< Left shift to apply to decoded PCM values to get final 24-bit output. 88 uint8_t quant_step_size[MAX_CHANNELS]; ///< left shift to apply to Huffman-decoded residuals 171 BestOffset best_offset[MAJOR_HEADER_INTERVAL+1][MAX_CHANNELS][NUM_CODEBOOKS]; 176 ChannelParams major_channel_params[MAJOR_HEADER_INTERVAL+1][MAX_CHANNELS]; ///< ChannelParams to be written to bitstream. 212 static ChannelParams restart_channel_params[MAX_CHANNELS]; 365 for (unsigned int channel = 0; channel < MAX_CHANNELS; channel++) { in copy_matrix_params() 412 static void clear_channel_params(ChannelParams channel_params[MAX_CHANNELS], in [all...] |
H A D | shorten.c | 37 #define MAX_CHANNELS 8 macro 93 int32_t *decoded[MAX_CHANNELS]; 94 int32_t *decoded_base[MAX_CHANNELS]; 95 int32_t *offset[MAX_CHANNELS]; 427 if (s->channels > MAX_CHANNELS) { in read_header()
|
H A D | wmaenc.c | 44 if (avctx->ch_layout.nb_channels > MAX_CHANNELS) { in encode_init() 47 avctx->ch_layout.nb_channels, MAX_CHANNELS); in encode_init() 195 int nb_coefs[MAX_CHANNELS]; in encode_block()
|
H A D | mlp.h | 39 #define MAX_CHANNELS 8 macro
|
/third_party/libsnd/programs/ |
H A D | sndfile-deinterleave.c | 41 #define MAX_CHANNELS 16 macro 46 SNDFILE * outfile [MAX_CHANNELS] ; 49 { double d [MAX_CHANNELS * BUFFER_LEN] ; 50 int i [MAX_CHANNELS * BUFFER_LEN] ; 97 if (sfinfo.channels > MAX_CHANNELS) in main() 99 argv [1], sfinfo.channels, MAX_CHANNELS) ; in main() 163 for (ch = 0 ; ch < MAX_CHANNELS ; ch++) in main()
|
/third_party/ffmpeg/tests/checkasm/ |
H A D | alacdsp.c | 30 #define MAX_CHANNELS 2 macro 35 for (i = 0; i < BUF_SIZE*MAX_CHANNELS; i++) { \ 44 LOCAL_ALIGNED_16(int32_t, ref_buf, [BUF_SIZE*MAX_CHANNELS]); in check_decorrelate_stereo() 45 LOCAL_ALIGNED_16(int32_t, new_buf, [BUF_SIZE*MAX_CHANNELS]); in check_decorrelate_stereo() 87 LOCAL_ALIGNED_16(int32_t, ref_buf, [BUF_SIZE*MAX_CHANNELS*2]); in check_append_extra_bits() 88 LOCAL_ALIGNED_16(int32_t, new_buf, [BUF_SIZE*MAX_CHANNELS*2]); in check_append_extra_bits()
|
H A D | flacdsp.c | 30 #define MAX_CHANNELS 8 macro 59 LOCAL_ALIGNED_16(uint8_t, ref_dst, [BUF_SIZE*MAX_CHANNELS]); in checkasm_check_flacdsp() 60 LOCAL_ALIGNED_16(uint8_t, ref_buf, [BUF_SIZE*MAX_CHANNELS]); in checkasm_check_flacdsp() 61 LOCAL_ALIGNED_16(uint8_t, new_dst, [BUF_SIZE*MAX_CHANNELS]); in checkasm_check_flacdsp() 62 LOCAL_ALIGNED_16(uint8_t, new_buf, [BUF_SIZE*MAX_CHANNELS]); in checkasm_check_flacdsp() 83 for (j = 2; j <= MAX_CHANNELS; j += 2) { in checkasm_check_flacdsp()
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_pan.c | 40 #define MAX_CHANNELS 64 macro 46 double gain[MAX_CHANNELS][MAX_CHANNELS]; 53 int channel_map[MAX_CHANNELS]; 84 channel_id >= 0 && channel_id < MAX_CHANNELS) { in parse_channel_name() 99 int used_out_ch[MAX_CHANNELS] = {0}; in init() 123 int used_in_ch[MAX_CHANNELS] = {0}; in init() 218 for (i = 0; i < MAX_CHANNELS; i++) { in are_gains_pure() 221 for (j = 0; j < MAX_CHANNELS; j++) { in are_gains_pure() 274 for (i = j = 0; i < MAX_CHANNELS; in config_props() [all...] |
/third_party/libsnd/examples/ |
H A D | sfprocess.c | 45 #define MAX_CHANNELS 6 macro 99 if (sfinfo.channels > MAX_CHANNELS) in main() 100 { printf ("Not able to process more than %d channels\n", MAX_CHANNELS) ; in main() 129 { double channel_gain [MAX_CHANNELS] = { 0.5, 0.8, 0.1, 0.4, 0.4, 0.9 } ; in process_data()
|
/third_party/ffmpeg/tests/ |
H A D | audiogen.c | 29 #define MAX_CHANNELS 12 macro 141 int tabf1[MAX_CHANNELS], tabf2[MAX_CHANNELS]; in main() 142 int taba[MAX_CHANNELS]; in main() 165 if (nb_channels < 1 || nb_channels > MAX_CHANNELS) { in main()
|
/third_party/backends/backend/ |
H A D | v4l.h | 34 #define MAX_CHANNELS 32 macro 98 SANE_String_Const channel[MAX_CHANNELS];
|
/third_party/ffmpeg/libavutil/tests/ |
H A D | audio_fifo.c | 26 #define MAX_CHANNELS 32 macro 32 void const *data_planes[MAX_CHANNELS]; 110 void *data_planes[MAX_CHANNELS]; in write_samples_to_audio_fifo()
|
/third_party/ffmpeg/libavcodec/arm/ |
H A D | mlpdsp_armv5te.S | 24 #define MAX_CHANNELS 8 define 243 str ST0, [PSAMP], #4 * MAX_CHANNELS 335 str ST3, [PSAMP], #4 * MAX_CHANNELS 517 ldrb LSB, [PBL], #MAX_CHANNELS 522 ldrb LSB, [PBL], #MAX_CHANNELS 530 ldrb LSB, [PBL], #MAX_CHANNELS 533 add PSA, PSA, #MAX_CHANNELS*4 600 sub v2, v2, #MAX_CHANNELS
|
/third_party/alsa-utils/bat/ |
H A D | common.h | 42 #define MAX_CHANNELS 2 macro 227 float target_freq[MAX_CHANNELS];
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | mlpdsp.asm | 68 add blsbs_ptrq, 8 ; bypassed_lsbs += MAX_CHANNELS; 69 add samplesq, 32 ; samples += MAX_CHANNELS; 87 add blsbs_ptrq, 8 ; bypassed_lsbs += MAX_CHANNELS; 88 add samplesq, 32 ; samples += MAX_CHANNELS;
|
H A D | mlpdsp_init.c | 128 #define BINC AV_STRINGIFY(4* MAX_CHANNELS)
|
/third_party/alsa-utils/speaker-test/ |
H A D | speaker-test.c | 85 #define MAX_CHANNELS 16 macro 129 static const char *const channel_name[MAX_CHANNELS] = { 670 static const char *wav_file[MAX_CHANNELS]; 671 static int wav_file_size[MAX_CHANNELS]; 773 static const char *const wavs[MAX_CHANNELS] = { in setup_wav_file() 798 if (channel >= 0 && channel < MAX_CHANNELS) in setup_wav_file()
|