HomeSort by relevance Sort by last modified time
    Searched full:residual (Results 1 - 25 of 189) sorted by null

1 2 3 4 5 6 7 8

  /external/flac/libFLAC/include/private/
lpc.h 130 * Compute the residual signal obtained from sutracting the predicted
138 * OUT residual[0,data_len-1] residual signal
140 void FLAC__lpc_compute_residual_from_qlp_coefficients(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 residual[]);
141 void FLAC__lpc_compute_residual_from_qlp_coefficients_wide(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 residual[]);
145 void FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 residual[]);
146 void FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32_mmx(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 residual[]);
156 * Restore the original signal by summing the residual and the
159 * IN residual[0,data_len-1] residual signa
    [all...]
fixed.h 46 * of the residual signal for each order. The _wide() version uses
72 * Compute the residual signal obtained from sutracting the predicted
78 * OUT residual[0,data_len-1] residual signal
80 void FLAC__fixed_compute_residual(const FLAC__int32 data[], unsigned data_len, unsigned order, FLAC__int32 residual[]);
85 * Restore the original signal by summing the residual and the
88 * IN residual[0,data_len-1] residual signal
95 void FLAC__fixed_restore_signal(const FLAC__int32 residual[], unsigned data_len, unsigned order, FLAC__int32 data[]);
  /external/aac/libFDK/include/
FDK_trigFcts.h 142 * Returns delta x residual.
146 FIXP_DBL residual; local
152 residual = fMult(x, FL2FXCONST_DBL(1.0/M_PI));
153 s = ((LONG)residual) >> shift;
155 residual &= ( (1<<shift) - 1 );
156 residual = fMult(residual, FL2FXCONST_DBL(M_PI/4.0)) << 2;
157 residual <<= scale;
202 return residual;
215 FIXP_DBL residual, error0, error1, sine, cosine local
    [all...]
  /external/speex/include/speex/
speex_preprocess.h 6 * residual echo suppression (after using the echo canceller), automatic
41 * residual echo suppression (after using the echo canceller), automatic
61 * the same value as that used for the echo canceller for residual echo cancellation to work.
148 /** Set maximum attenuation of the residual echo in dB (negative number) */
150 /** Get maximum attenuation of the residual echo in dB (negative number) */
153 /** Set maximum attenuation of the residual echo in dB when near end is active (negative number) */
155 /** Get maximum attenuation of the residual echo in dB when near end is active (negative number) */
158 /** Set the corresponding echo canceller state so that residual echo suppression can be performed (NULL for no residual echo suppression) */
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
residu.h 39 * Purpose : Computes the LP residual.
40 * Description : The LP residual is computed by filtering the input
75 Word16 y[], /* (o) : residual signal */
  /external/flac/libFLAC/
fixed.c 58 /* rbps stands for residual bits per sample
256 /* Estimate the expected number of bits per residual signal sample. */
257 /* 'total_error*' is linearly related to the variance of the residual */
318 /* Estimate the expected number of bits per residual signal sample. */
319 /* 'total_error*' is linearly related to the variance of the residual */
352 void FLAC__fixed_compute_residual(const FLAC__int32 data[], unsigned data_len, unsigned order, FLAC__int32 residual[])
359 FLAC__ASSERT(sizeof(residual[0]) == sizeof(data[0]));
360 memcpy(residual, data, sizeof(residual[0])*data_len);
364 residual[i] = data[i] - data[i-1]
    [all...]
lpc.c 265 void FLAC__lpc_compute_residual_from_qlp_coefficients(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 residual[])
296 *(residual++) = *(data++) - (sum >> lp_quantization);
304 residual[i] = data[i] - (sum >> lp_quantization);
339 residual[i] = data[i] - (sum >> lp_quantization);
356 residual[i] = data[i] - (sum >> lp_quantization);
374 residual[i] = data[i] - (sum >> lp_quantization);
389 residual[i] = data[i] - (sum >> lp_quantization);
407 residual[i] = data[i] - (sum >> lp_quantization);
420 residual[i] = data[i] - (sum >> lp_quantization);
434 residual[i] = data[i] - (sum >> lp_quantization)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_UnpackBlock2x2.c 25 * Unpack a 2x2 block of coefficient-residual pair values
28 * [in] ppSrc Double pointer to residual coefficient-position pair
armVCM4P10_UnpackBlock4x4.c 25 * Unpack a 4x4 block of coefficient-residual pair values
28 * [in] ppSrc Double pointer to residual coefficient-position pair
  /external/flac/libFLAC/ia32/
stream_encoder_asm.nasm 46 ; const FLAC__int32 residual[],
58 ;; [esp + 4] const FLAC__int32 residual[]
69 ;; [esp + 28] const FLAC__int32 residual[]
93 mov ebp, [esp + 28] ; ebp <- residual[]
103 add ebx, eax ; abs_residual_partition_sum += abs(residual[residual_sample]);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
residu.c 20 * Description: Compute the LPC residual by filtering *
31 Word16 y[], /* (o) x2 : residual signal */
  /external/flac/libFLAC/ppc/as/
lpc_asm.s 38 ; r3: residual[]
52 ; has only one load from memory (the residual)
225 lvsl v18,r10,r3 ; v18: residual shift back vector
274 lvewx v21,0,r3 ; v21[n]: *residual
275 vperm v21,v21,v21,v18 ; v21[3]: *residual
276 vaddsws v20,v21,v20 ; v20[3]: *residual + (sum >> lp_quantization)
297 ; r3: residual[]
390 lvsl v6,r10,r3 ; v6: residual shift back vector
409 lvewx v9,0,r3 ; v9[n]: *residual
410 vperm v9,v9,v9,v6 ; v9[3]: *residual
    [all...]
  /external/flac/libFLAC/ppc/gas/
lpc_asm.s 40 # r3: residual[]
54 # has only one load from memory (the residual)
227 lvsl v18,r10,r3 # v18: residual shift back vector
276 lvewx v21,0,r3 # v21[n]: *residual
277 vperm v21,v21,v21,v18 # v21[3]: *residual
278 vaddsws v20,v21,v20 # v20[3]: *residual + (sum >> lp_quantization)
299 # r3: residual[]
392 lvsl v6,r10,r3 # v6: residual shift back vector
411 lvewx v9,0,r3 # v9[n]: *residual
412 vperm v9,v9,v9,v6 # v9[3]: *residual
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/
Android.mk 15 src/residual.cpp \
  /external/aac/libFDK/src/
FDK_trigFcts.cpp 298 FIXP_DBL residual, error, sine, cosine; local
300 residual = fixp_sin_cos_residual_inline(x, scale, &sine, &cosine);
301 error = fMult(sine, residual);
308 FIXP_DBL residual, error, sine, cosine; local
310 residual = fixp_sin_cos_residual_inline(x, scale, &sine, &cosine);
311 error = fMult(cosine, residual);
318 FIXP_DBL residual, error0, error1, sine, cosine; local
320 residual = fixp_sin_cos_residual_inline(x, scale, &sine, &cosine);
321 error0 = fMult(sine, residual);
322 error1 = fMult(cosine, residual);
    [all...]
  /external/compiler-rt/lib/
divdf3.c 138 // In either case, we are going to compute a residual of the form
150 rep_t residual; local
152 residual = (aSignificand << 53) - quotient * bSignificand;
156 residual = (aSignificand << 52) - quotient * bSignificand;
173 const bool round = (residual << 1) > bSignificand;
divsf3.c 123 // In either case, we are going to compute a residual of the form
135 rep_t residual; local
137 residual = (aSignificand << 24) - quotient * bSignificand;
141 residual = (aSignificand << 23) - quotient * bSignificand;
158 const bool round = (residual << 1) > bSignificand;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_image.c 152 and the residual are given separately and will be combined while
159 residual pointer to residual data, 16 16-element arrays for luma
172 i32 residual[][16])
214 pRes = residual[block];
230 /* Residual is zero => copy prediction block to output */
245 /* Calculate image = prediction + residual
279 pRes = residual[block];
304 /* Residual is zero => copy prediction block to output */
h264bsd_util.h 71 /* macro to mark a residual block empty, i.e. contain zero coefficients */
72 #define MARK_RESIDUAL_EMPTY(residual) ((residual)[0] = EMPTY_RESIDUAL_INDICATOR)
73 /* macro to check if residual block is empty */
74 #define IS_RESIDUAL_EMPTY(residual) ((residual)[0] == EMPTY_RESIDUAL_INDICATOR)
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/
ARM_DELIVERY.TXT 29 that it is possible residual defects or errors in operation, consistency
35 damages as a result of encountering one or more of these residual defects.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/
ARM_DELIVERY.TXT 29 that it is possible residual defects or errors in operation, consistency
35 damages as a result of encountering one or more of these residual defects.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/
ARM_DELIVERY.TXT 29 that it is possible residual defects or errors in operation, consistency
35 damages as a result of encountering one or more of these residual defects.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
omxVCM4P10_DecodeChromaDcCoeffsToPairCAVLC.c 43 * [out] ppPosCoefbuf Double pointer to destination residual
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_DecodeChromaDcCoeffsToPairCAVLC.c 43 * [out] ppPosCoefbuf Double pointer to destination residual
  /sdk/eclipse/
dictionary.txt 233 residual

Completed in 1001 milliseconds

1 2 3 4 5 6 7 8