HomeSort by relevance Sort by last modified time
    Searched full:gains (Results 26 - 50 of 427) sorted by null

12 3 4 5 6 7 8 91011>>

  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
raw_converter.rs 43 // Interpolate gain map to find per-channel gains at a given pixel
215 float4 gains = 1.f;
217 gains = getGain(i, j);
223 g = gains.x;
227 g = gains.y;
231 g = gains.z;
235 g = gains.w;
240 g = gains.y;
244 g = gains.x;
248 g = gains.w
    [all...]
  /external/chromium_org/third_party/opus/src/celt/
celt.c 122 static const opus_val16 gains[3][3] = { local
134 g00 = MULT16_16_Q15(g0, gains[tapset0][0]);
135 g01 = MULT16_16_Q15(g0, gains[tapset0][1]);
136 g02 = MULT16_16_Q15(g0, gains[tapset0][2]);
137 g10 = MULT16_16_Q15(g1, gains[tapset1][0]);
138 g11 = MULT16_16_Q15(g1, gains[tapset1][1]);
139 g12 = MULT16_16_Q15(g1, gains[tapset1][2]);
  /external/libopus/celt/
celt.c 122 static const opus_val16 gains[3][3] = { local
134 g00 = MULT16_16_Q15(g0, gains[tapset0][0]);
135 g01 = MULT16_16_Q15(g0, gains[tapset0][1]);
136 g02 = MULT16_16_Q15(g0, gains[tapset0][2]);
137 g10 = MULT16_16_Q15(g1, gains[tapset1][0]);
138 g11 = MULT16_16_Q15(g1, gains[tapset1][1]);
139 g12 = MULT16_16_Q15(g1, gains[tapset1][2]);
  /cts/apps/CameraITS/tests/inprog/scene2/
test_dng_tags.py 47 gains = cap["metadata"]["android.colorCorrection.gains"]
51 print "HAL reported gains:\n", numpy.array(gains)
60 # the HAL-reported WB gains, CCM, and calibration matrix.
61 cm, fm = its.dng.compute_cm_fm(dng_illum[i], gains, ccm, cal)
  /external/chromium_org/third_party/opus/src/silk/float/
encode_frame_FLP.c 145 /* Process gains */
278 /* Quantize gains */
283 /* Unique identifier of gains vector */
286 /* Overwrite unquantized gains with quantized gains and convert back to Q0 from Q16 */
288 sEncCtrl.Gains[ i ] = pGains_Q16[ i ] / 65536.0f;
342 /* Save original gains */
343 silk_memcpy( TempGains, psEncCtrl->Gains, psEnc->sCmn.nb_subfr * sizeof( silk_float ) );
349 /* Increase Gains to get target LBRR rate */
354 /* Decode to get gains in sync with decoder *
    [all...]
find_pred_coefs_FLP.c 53 silk_assert( psEncCtrl->Gains[ i ] > 0.0f );
54 invGains[ i ] = 1.0f / psEncCtrl->Gains[ i ];
82 /* Create signal with prepended subframes, scaled by inverse gains */
111 silk_residual_energy_FLP( psEncCtrl->ResNrg, LPC_in_pre, psEncCtrl->PredCoef, psEncCtrl->Gains,
  /external/libopus/silk/float/
encode_frame_FLP.c 145 /* Process gains */
278 /* Quantize gains */
283 /* Unique identifier of gains vector */
286 /* Overwrite unquantized gains with quantized gains and convert back to Q0 from Q16 */
288 sEncCtrl.Gains[ i ] = pGains_Q16[ i ] / 65536.0f;
342 /* Save original gains */
343 silk_memcpy( TempGains, psEncCtrl->Gains, psEnc->sCmn.nb_subfr * sizeof( silk_float ) );
349 /* Increase Gains to get target LBRR rate */
354 /* Decode to get gains in sync with decoder *
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
encode_lpc_swb.h 192 * -lpcGain : pointer to LPC Gain, expecting 6 LPC gains
204 * Decorrelate LPC gains. There are 6 LPC Gains per frame. This is like
221 * Quantize the decorrelated log-domain gains.
224 * -lpcGain : uncorrelated LPC gains.
lpc_gain_swb_tables.c 29 * LPC gains.
37 * Number of reconstruction points of quantizers for LPC Gains.
54 * gains.
117 * An array of pointers to CDFs of decorrelated LPC Gains
127 * A matrix to decorrellate LPC gains of subframes.
pitch_estimator.c 472 double *gains)
515 /* Iterative optimization of gains */
522 /* set initial gains */
524 gains[k] = PITCH_MAX_GAIN_06;
528 /* compute Jacobian of pre-filter output towards gains */
529 WebRtcIsac_PitchfilterPre_gains(Whitened, out_G, out_dG, &(State->PFstr_wght), lags, gains);
551 tmp += kWeight[k+1][m+1] * gains[m];
562 tmp = 1.0 / (1 - gains[k]);
566 tmp = 1.0 / (1 - gains[3]);
600 /* update gains and check range *
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
encode_lpc_swb.h 193 * -lpcGain : pointer to LPC Gain, expecting 6 LPC gains
205 * Decorrelate LPC gains. There are 6 LPC Gains per frame. This is like
222 * Quantize the decorrelated log-domain gains.
225 * -lpcGain : uncorrelated LPC gains.
lpc_gain_swb_tables.c 29 * LPC gains.
37 * Number of reconstruction points of quantizers for LPC Gains.
54 * gains.
117 * An array of pointers to CDFs of decorrelated LPC Gains
127 * A matrix to decorrellate LPC gains of subframes.
pitch_estimator.c 471 double *gains)
514 /* Iterative optimization of gains */
521 /* set initial gains */
523 gains[k] = PITCH_MAX_GAIN_06;
527 /* compute Jacobian of pre-filter output towards gains */
528 WebRtcIsac_PitchfilterPre_gains(Whitened, out_G, out_dG, &(State->PFstr_wght), lags, gains);
550 tmp += kWeight[k+1][m+1] * gains[m];
561 tmp = 1.0 / (1 - gains[k]);
565 tmp = 1.0 / (1 - gains[3]);
599 /* update gains and check range *
    [all...]
  /frameworks/av/services/audiopolicy/
audio_policy.conf 51 # - one or more "gains" sections can be present in a device descriptor section.
57 # gains {
94 gains {
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Mixer_Private.h 71 /* For applying different gains to Left and right chennals */
84 /* For applying different gains to Left and right chennals */
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
gmed_n.h 71 Word16 n /* i : The number of gains; this routine */
72 /* is only valid for a odd number of gains */
  /external/chromium-trace/trace-viewer/third_party/python_gflags/
README 7 that are useful to it. When one python module imports another, it gains
  /external/chromium_org/third_party/opus/src/silk/fixed/
find_pred_coefs_FIX.c 61 /* Invert and normalize gains, and ensure that maximum invGains_Q16 is within range of a 16 bit int */
67 /* Square the inverted gains */
72 /* Invert the inverted and normalized gains */
109 /* Create signal with prepended subframes, scaled by inverse gains */
process_gains_FIX.c 35 /* Processing of gains */
61 /* Soft limit on ratio residual energy and squared gains */
89 /* Save unquantized gains and gain Index */
93 /* Quantize gains */
  /external/chromium_org/third_party/opus/src/silk/
gain_quant.c 41 opus_int32 gain_Q16[ MAX_NB_SUBFR ], /* I/O gains (quantized out) */
92 /* Gains scalar dequantization, uniform on log scale */
94 opus_int32 gain_Q16[ MAX_NB_SUBFR ], /* O quantized gains */
127 opus_int32 silk_gains_ID( /* O returns unique identifier of gains */
  /external/chromium_org/third_party/python_gflags/
README 7 that are useful to it. When one python module imports another, it gains
  /external/chromium_org/ui/wm/public/
activation_change_observer.h 17 // Called when |active| gains focus, or there is no active window
  /external/chromium_org/win8/metro_driver/ime/
text_service.h 42 // Must be called whenever the attached window gains keyboard focus.
  /external/libopus/silk/fixed/
find_pred_coefs_FIX.c 61 /* Invert and normalize gains, and ensure that maximum invGains_Q16 is within range of a 16 bit int */
67 /* Square the inverted gains */
72 /* Invert the inverted and normalized gains */
109 /* Create signal with prepended subframes, scaled by inverse gains */
process_gains_FIX.c 35 /* Processing of gains */
61 /* Soft limit on ratio residual energy and squared gains */
89 /* Save unquantized gains and gain Index */
93 /* Quantize gains */

Completed in 730 milliseconds

12 3 4 5 6 7 8 91011>>