Searched refs:lpc_order (Results 1 - 7 of 7) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dalacenc.c55 int lpc_order; member in struct:AlacLPCContext
137 s->lpc[ch].lpc_order = 6;
154 s->lpc[ch].lpc_order = opt_order;
244 if (lpc.lpc_order == 31) {
255 if (lpc.lpc_order > 0) {
261 for (i = 1; i <= lpc.lpc_order; i++)
265 for (i = lpc.lpc_order + 1; i < s->avctx->frame_size; i++) {
268 for (j = 0; j < lpc.lpc_order; j++) {
269 sum += (samples[lpc.lpc_order-j] - samples[0]) *
275 residual[i] = sign_extend(samples[lpc.lpc_order
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dalacenc.c54 int lpc_order; member in struct:AlacLPCContext
156 s->lpc[ch].lpc_order = 6;
173 s->lpc[ch].lpc_order = opt_order;
257 if (lpc.lpc_order == 31) {
270 if (lpc.lpc_order > 0) {
276 for (i = 1; i <= lpc.lpc_order; i++)
280 for (i = lpc.lpc_order + 1; i < s->frame_size; i++) {
283 for (j = 0; j < lpc.lpc_order; j++) {
284 sum += (samples[lpc.lpc_order-j] - samples[0]) *
290 residual[i] = sign_extend(samples[lpc.lpc_order
[all...]
H A Dalac.c169 int lpc_order, int lpc_quant)
180 if (!lpc_order) {
186 if (lpc_order == 31) {
196 for (i = 1; i <= lpc_order && i < nb_samples; i++)
209 for (j = 0; j < lpc_order; j++)
218 for (j = 0; j < lpc_order && error_val * error_sign > 0; j++) {
311 int lpc_order[2]; local
323 lpc_order[ch] = get_bits(&alac->gb, 5);
325 if (lpc_order[ch] >= alac->max_samples_per_frame)
329 for (i = lpc_order[c
167 lpc_prediction(int32_t *error_buffer, int32_t *buffer_out, int nb_samples, int bps, int16_t *lpc_coefs, int lpc_order, int lpc_quant) argument
[all...]
H A Dopus_silk.c1022 int *lpc_order, int *has_lpc_leadin, int voiced)
1030 *lpc_order = order = s->wb ? 16 : 10;
1019 silk_decode_lpc(SilkContext *s, SilkFrame *frame, OpusRangeCoder *rc, float lpc_leadin[16], float lpc[16], int *lpc_order, int *has_lpc_leadin, int voiced) argument
H A Dwmalosslessdec.c171 int lpc_order; member in struct:WmallDecodeCtx
569 s->lpc_order = get_bits(&s->gb, 5) + 1;
574 for (i = 0; i < s->lpc_order; i++)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/test/
H A Dtest_streams.sh191 for lpc_order in 0 1 2 3 4 5 7 8 9 15 16 17 31 32 ; do
192 if [ $lpc_order = 0 ] || [ $lpc_order -le $blocksize ] ; then
193 test_file noise8m32 1 8 "-8 -p -e -l $lpc_order --lax --blocksize=$blocksize $disable"
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dstream_encoder.c3196 unsigned min_lpc_order, max_lpc_order, lpc_order; local
3333 for(lpc_order = min_lpc_order; lpc_order <= max_lpc_order; lpc_order++) {
3334 lpc_residual_bits_per_sample = FLAC__lpc_compute_expected_bits_per_residual_sample(lpc_error[lpc_order-1], frame_header->blocksize-lpc_order);
3349 max_qlp_coeff_precision = min(32 - subframe_bps - lpc_order, FLAC__MAX_QLP_COEFF_PRECISION);
3366 encoder->private_->lp_coeff[lpc_order-1],
3369 lpc_order,

Completed in 320 milliseconds