/pdk/apps/CameraITS/tests/ |
test_3a.py | 25 sens, exp, gains, xform, focus = cam.do_3a(rect, rect, rect) 27 print "AWB: gains", gains, "transform", xform 31 assert(len(gains) == 4)
|
test_capture_result.py | 50 "android.colorCorrection.gains": manual_gains, 95 gains = cap_res["android.colorCorrection.gains"] 102 print "Gains:", gains 112 assert(len(gains) == 4) 114 assert(all([g > 0 for g in gains])) 118 assert(any([not is_close_float(gains[i], manual_gains[i]) 143 gains = cap_res["android.colorCorrection.gains"] [all...] |
test_3a_remote.py | 53 gains = cap["metadata"]["android.colorCorrection.gains"] 61 print "Gains:", gains
|
tutorial.py | 101 sens, exp, gains, xform, focus = cam.do_3a(rect, rect, rect) 103 print "AWB: gains", gains, "transform", xform 111 # request. Here, the AWB gains and transform (CCM) are being used. 120 req["android.colorCorrection.gains"] = gains
|
test_auto.py | 28 sens, exp, gains, xform, focus = cam.do_3a(rect, rect, rect)
|
test_param_edge_mode.py | 40 sens, exp, gains, xform, focus = cam.do_3a(rect, rect, rect)
|
test_param_color_correction.py | 26 Takes shots with different transform and gains values, and tests that 27 they look correspondingly different. The transform and gains are chosen 37 # 1. With unit gains, and identity transform. 39 # 3. With unit gains, and a transform that boosts blue. 67 # Gains: 71 gains = [[1,1,1,1], [2,1,1,1], [1,1,1,1]] 80 req["android.colorCorrection.gains"] = gains[i]
|
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
pitch_estimator.h | 29 double *gains); 41 double *gains); 47 double *gains); 53 double *gains); 60 double *gains);
|
pitch_filter.c | 101 * damper_state_dg : state of damping filter for different trial gains. 214 /* Update filter parameters based on the pitch-gains and pitch-lags. */ 240 * Filter a frame of 30 millisecond, given pitch-lags and pitch-gains. 245 * gains : pointer to pitch-gians, 4 gains per frame. 252 * pitch-gains. 261 double* lags, double* gains, PitchFilterOperation mode, 294 gains[n] *= -kEnhancer; 305 old_gain = gains[0]; 319 gain_delta = (gains[m] - old_gain) / PITCH_GRAN_PER_SUBFRAME [all...] |
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...] |
/external/chromium_org/third_party/opus/src/silk/float/ |
residual_energy_FLP.c | 95 const silk_float gains[], /* I Quantization gains */ 109 nrgs[ 0 ] = ( silk_float )( gains[ 0 ] * gains[ 0 ] * silk_energy_FLP( LPC_res_ptr + 0 * shift, subfr_length ) ); 110 nrgs[ 1 ] = ( silk_float )( gains[ 1 ] * gains[ 1 ] * silk_energy_FLP( LPC_res_ptr + 1 * shift, subfr_length ) ); 114 nrgs[ 2 ] = ( silk_float )( gains[ 2 ] * gains[ 2 ] * silk_energy_FLP( LPC_res_ptr + 0 * shift, subfr_length ) ); 115 nrgs[ 3 ] = ( silk_float )( gains[ 3 ] * gains[ 3 ] * silk_energy_FLP( LPC_res_ptr + 1 * shift, subfr_length ) ) [all...] |
main_FLP.h | 170 const silk_float invGains[ MAX_NB_SUBFR ], /* I Inverse quantization gains */ 182 const silk_float gains[], /* I Quantization gains */ 199 silk_float B[ MAX_NB_SUBFR * LTP_ORDER ], /* I/O (Un-)quantized LTP gains */ 217 /* Processing of gains */
|
/external/chromium_org/third_party/opus/src/silk/fixed/ |
residual_energy_FIX.c | 42 const opus_int32 gains[ MAX_NB_SUBFR ], /* I Quantization gains */ 81 /* Apply the squared subframe gains */ 83 /* Fully upscale gains and energies */ 85 lz2 = silk_CLZ32( gains[ i ] ) - 1; 87 tmp32 = silk_LSHIFT32( gains[ i ], lz2 ); 89 /* Find squared gains */
|
main_FIX.h | 174 const opus_int32 invGains_Q16[ MAX_NB_SUBFR ], /* I Inverse quantization gains, one for each subframe */ 187 const opus_int32 gains[ MAX_NB_SUBFR ], /* I Quantization gains */ 203 /* Processing of gains */
|
/external/webrtc/src/modules/audio_processing/agc/ |
digital_agc.c | 30 // gains = round(2^16*10.^(0.05 * (MinGain + B * ( log(exp(-Knee*A)+exp(-Knee*B)) - log(1+exp(-Knee*B)) ) / log(1/(1+exp(Knee*B)))))); 31 // fprintf(1, '\t%i, %i, %i, %i,\n', gains); 33 // in = 10*log10(lvl); out = 20*log10(gains/65536); 308 // array for gains (one value per ms, incl start & end) 309 WebRtc_Word32 gains[11]; local 427 gains[0] = stt->gain; 468 gains[k + 1] = stt->gainTable[zeros] + WEBRTC_SPL_RSHIFT_W32(tmp32, 12); 513 if ((gains[k + 1] - stt->gainTable[0]) > 8388608) 516 tmp32 = WEBRTC_SPL_RSHIFT_W32((gains[k+1] - stt->gainTable[0]), 8); 520 tmp32 = WEBRTC_SPL_MUL((gains[k+1] - stt->gainTable[0]), (178 + gain_adj)) [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]);
|
/pdk/apps/CameraITS/pymodules/its/ |
target.py | 59 sens, exp_time, gains, xform, _ = its_session.do_3a(r,r,r,True,True,False) 68 # Use the gains+transform returned by the AWB pass. 75 req["android.colorCorrection.gains"] = gains
|
/frameworks/wilhelm/src/itf/ |
IOutputMixExt.c | 122 // copy gains from audio player to track 212 float gains[STEREO_CHANNELS]; local 217 gains[channel] = gain;
|
/device/asus/flo/camera/QCamera2/stack/common/ |
cam_types.h | 744 float gains[4]; member in struct:__anon1711 846 /*Color channel gains in the Bayer raw domain in the order [RGeGoB]*/ 850 /*The best fit color channels gains calculated by the stats*/ [all...] |
/hardware/qcom/camera/QCamera2/stack/common/ |
cam_types.h | 759 float gains[4]; member in struct:__anon31331 904 /*Color channel gains in the Bayer raw domain in the order [RGeGoB]*/ 908 /*The best fit color channels gains calculated by the stats*/ [all...] |
/external/valgrind/main/exp-bbv/tests/amd64-linux/ |
ll.S | 50 # but, that only gains us one byte of space in the lzss image.
|
/external/valgrind/main/exp-bbv/tests/x86-linux/ |
ll.S | 44 # but, that only gains us one byte of space in the lzss image.
|
/external/chromium/chrome/browser/resources/ |
print_preview.js | 586 * Whenever the page range textfield gains focus we add a timer to detect when
|
/device/asus/flo/camera/QCamera2/HAL3/ |
QCamera3HWI.cpp | [all...] |
/hardware/qcom/camera/QCamera2/HAL3/ |
QCamera3HWI.cpp | [all...] |