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

1 2 3 4

  /external/opencore/codecs_v2/video/avc_h264/enc/src/
block.cpp 83 int16 *coef = video->block; local
92 coef += ((blkidx & 0x3) << 2) + ((blkidx >> 2) << 6); /* point to the 4x4 block */
110 coef[0] = r0 + r1;
111 coef[2] = r0 - r1;
112 coef[1] = (r3 << 1) + r2;
113 coef[3] = r3 - (r2 << 1);
115 coef += 16;
121 coef -= 64;
126 r0 = coef[0] + coef[48]
263 int16 *coef, *coef8 = video->block; local
367 int16 *coef = video->block; local
730 int16 *coef = video->block + 256; local
    [all...]
  /external/jpeg/
jccoefct.c 75 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; variable
82 coef->MCU_rows_per_iMCU_row = 1;
84 if (coef->iMCU_row_num < (cinfo->total_iMCU_rows-1))
85 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
87 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
90 coef->mcu_ctr = 0;
91 coef->MCU_vert_offset = 0;
102 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
145 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
247 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
343 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
407 my_coef_ptr coef; local
    [all...]
jdcoefct.c 82 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
89 coef->MCU_rows_per_iMCU_row = 1;
92 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
94 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
97 coef->MCU_ctr = 0;
98 coef->MCU_vert_offset = 0;
122 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
125 if (coef->pub.coef_arrays != NULL)
149 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
246 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
317 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
407 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
463 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
678 my_coef_ptr coef; local
    [all...]
jctrans.c 230 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
237 coef->MCU_rows_per_iMCU_row = 1;
239 if (coef->iMCU_row_num < (cinfo->total_iMCU_rows-1))
240 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
242 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
245 coef->mcu_ctr = 0;
246 coef->MCU_vert_offset = 0;
257 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
280 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
366 my_coef_ptr coef; local
    [all...]
jdtrans.c 53 /* Absorb whole file into the coef buffer */
83 return cinfo->coef->coef_arrays;
jcphuff.c 40 int last_dc_val[MAX_COMPS_IN_SCAN]; /* last DC coef for each component */
502 /* For a negative coef, want temp2 = bitwise complement of abs(coef) */
508 /* Watch out for case that nonzero coef is zero after point transform */
657 EOB = k; /* EOB = index of last newly-nonzero coef */
685 /* If the coef was previously nonzero, it only needs a correction bit.
702 /* Emit output bit for newly-nonzero coef */
jidctfst.c 129 #define DEQUANTIZE(coef,quantval) (((IFAST_MULT_TYPE) (coef)) * (quantval))
131 #define DEQUANTIZE(coef,quantval) \
132 DESCALE((coef)*(quantval), IFAST_SCALE_BITS-PASS1_BITS)
jcapimin.c 168 /* We bypass the main controller and invoke coef controller directly;
171 if (! (*cinfo->coef->compress_data) (cinfo, (JSAMPIMAGE) NULL))
  /external/speex/libspeex/
lsp_bfin.h 39 spx_word16_t *coef, /* P or Q coefs in Q13 format */
49 "P0 = %2;\n\t" /* P0: coef[m], coef[m-1],..., coef[0] */
81 : "a" (x), "a" (&coef[m]), "a" (m-1)
scal.c 230 //float coef = .5*0.78130;
231 float coef = M_PI*0.075063 * 0.93763 * amount * .8 * 0.707; local
241 gain = coef*sqrt(.1+st->curve[i]);
245 frame[0] = coef*uni_rand(&st->seed)*sqrt(.1+st->curve[0]);
246 frame[2*st->frame_size-1] = coef*uni_rand(&st->seed)*sqrt(.1+st->curve[st->frame_size-1]);
sb_celp.h 55 spx_word16_t gamma1; /**< Perceptual weighting coef 1 */
56 spx_word16_t gamma2; /**< Perceptual weighting coef 2 */
lsp.c 141 spx_word16_t *coef, /* P or Q coefs in Q13 format */
162 sum = ADD32(EXTEND32(coef[m]), EXTEND32(MULT16_16_P14(coef[m-1],x)));
168 sum = ADD32(sum, EXTEND32(MULT16_16_P14(coef[m-i],b0)));
177 static float cheb_poly_eva(spx_word32_t *coef, spx_word16_t x, int m, char *stack)
192 b0=x*b0-b1+coef[m-k]; /* b0 holds its new value based on b0 and b1 */
196 return(-b1+.5*x*b0+coef[m]);
filters.h 68 /* Apply bandwidth expansion on LPC coef */
  /external/opencore/codecs_v2/audio/aac/dec/src/
esc_iquant_scaling.cpp 41 coef, data type Int.
43 coef[] = output array of uncompressed coefficients, stored in a
48 QFormat = the output Q format for the array coef[].
66 coef[] contents are overwritten with the uncompressed values from
134 coef[i] = absX;
169 absX = coef[i];
181 coef[i] = (Int32) (mult_high + mult_low);
187 absX = coef[i];
217 coef[i] = (Int32) (mult_high + mult_low);
437 Int32 coef[],
    [all...]
tns_inv_filter.cpp 47 coef = spectral input to be shaped by the filter.
56 (first input to filter is coef[0])
58 (first input to filter is coef[num_coef-1])
84 coef = contains spectral data after application of TNS filter
98 A block of spectral data (Int32 coef[]) of length (const Int num_coef)
106 back to the calling function via (Int32 coef[])
108 In order to avoid overflow, the filter input (Int32 coef[]) must utilize
119 [Int32 coef] must store no more than 16 bits of data.
122 the input data [Int32 coef], and to make use of a fast
297 Int32 coef[],
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
esc_iquant_scaling.cpp 41 coef, data type Int.
43 coef[] = output array of uncompressed coefficients, stored in a
48 QFormat = the output Q format for the array coef[].
66 coef[] contents are overwritten with the uncompressed values from
134 coef[i] = absX;
169 absX = coef[i];
181 coef[i] = (Int32) (mult_high + mult_low);
187 absX = coef[i];
217 coef[i] = (Int32) (mult_high + mult_low);
437 Int32 coef[],
    [all...]
tns_inv_filter.cpp 47 coef = spectral input to be shaped by the filter.
56 (first input to filter is coef[0])
58 (first input to filter is coef[num_coef-1])
84 coef = contains spectral data after application of TNS filter
98 A block of spectral data (Int32 coef[]) of length (const Int num_coef)
106 back to the calling function via (Int32 coef[])
108 In order to avoid overflow, the filter input (Int32 coef[]) must utilize
119 [Int32 coef] must store no more than 16 bits of data.
122 the input data [Int32 coef], and to make use of a fast
297 Int32 coef[],
    [all...]
  /frameworks/base/media/jni/
android_media_ResampleInputStream.cpp 52 #define FIR_COEF(coef) (short)(0x10000 * coef)
  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/common/src/
az_lsp.cpp 388 Word16 *coef;
436 coef = f1;
439 ylow = Chebps (xlow, coef, NC);
449 ylow = Chebps (xlow, coef, NC);
460 ymid = Chebps (xmid, coef, NC);
512 coef = f2;
517 coef = f1;
519 ylow = Chebps (xlow, coef, NC);
582 Word16 *coef; local
630 coef = f1
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrnb/common/src/
az_lsp.cpp 388 Word16 *coef;
436 coef = f1;
439 ylow = Chebps (xlow, coef, NC);
449 ylow = Chebps (xlow, coef, NC);
460 ymid = Chebps (xmid, coef, NC);
512 coef = f2;
517 coef = f1;
519 ylow = Chebps (xlow, coef, NC);
582 Word16 *coef; local
630 coef = f1
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_math.h 122 - b is the unsigned fraction (cast to signed int as long as coef
125 #define MULT_AUDIO_COEF(audio,coef) /*lint -e704 <avoid divide for performance>*/ \
128 ((EAS_I32)(audio)) * ((EAS_I32)(coef)) \
143 #define MULT_AUDIO_WET_DRY_COEF(audio,coef) /*lint -e(702) <avoid divide for performance>*/ \
146 ((EAS_I32)(audio)) * ((EAS_I32)(coef)) \
283 #define MULT_DENTS_COEF(dents,coef) /*lint -e704 <avoid divide for performance>*/ \
286 ((EAS_I32)(dents)) * ((EAS_I32)(coef)) \
299 /* drive coef is given as int.frac */
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_math.h 122 - b is the unsigned fraction (cast to signed int as long as coef
125 #define MULT_AUDIO_COEF(audio,coef) /*lint -e704 <avoid divide for performance>*/ \
128 ((EAS_I32)(audio)) * ((EAS_I32)(coef)) \
143 #define MULT_AUDIO_WET_DRY_COEF(audio,coef) /*lint -e(702) <avoid divide for performance>*/ \
146 ((EAS_I32)(audio)) * ((EAS_I32)(coef)) \
283 #define MULT_DENTS_COEF(dents,coef) /*lint -e704 <avoid divide for performance>*/ \
286 ((EAS_I32)(dents)) * ((EAS_I32)(coef)) \
299 /* drive coef is given as int.frac */
  /external/sonivox/arm-wt-22k/lib_src/
eas_math.h 122 - b is the unsigned fraction (cast to signed int as long as coef
125 #define MULT_AUDIO_COEF(audio,coef) /*lint -e704 <avoid divide for performance>*/ \
128 ((EAS_I32)(audio)) * ((EAS_I32)(coef)) \
143 #define MULT_AUDIO_WET_DRY_COEF(audio,coef) /*lint -e(702) <avoid divide for performance>*/ \
146 ((EAS_I32)(audio)) * ((EAS_I32)(coef)) \
283 #define MULT_DENTS_COEF(dents,coef) /*lint -e704 <avoid divide for performance>*/ \
286 ((EAS_I32)(dents)) * ((EAS_I32)(coef)) \
299 /* drive coef is given as int.frac */
  /external/qemu/distrib/sdl-1.2.12/src/joystick/linux/
SDL_sysjoystick.c 290 int coef[3]; member in struct:joystick_hwdata::axis_correct
715 joystick->hwdata->abs_correct[i].coef[0] =
717 joystick->hwdata->abs_correct[i].coef[1] =
721 joystick->hwdata->abs_correct[i].coef[2] = (1 << 29) / t;
723 joystick->hwdata->abs_correct[i].coef[2] = 0;
1039 if ( value > correct->coef[0] ) {
1040 if ( value < correct->coef[1] ) {
1043 value -= correct->coef[1];
1045 value -= correct->coef[0];
1047 value *= correct->coef[2]
    [all...]
  /external/srec/srec/cfront/
cheldsp4.c 225 cepdata rgmcep[MAX_CEP_DIM+1]; /*regression MCEP coef. */
226 cepdata ddmcep[MAX_CEP_DIM+1]; /*del-del-MCEP coef. */
227 cepdata rastapar[MAX_CEP_DIM+1]; /*del-del-MCEP coef. */

Completed in 564 milliseconds

1 2 3 4