Home
last modified time | relevance | path

Searched refs:SUINT (Results 1 – 15 of 15) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dsimple_idct_template.c104 #define MUL(a, b) ((int)((SUINT)(a) * (b)))
105 #define MAC(a, b, c) ((a) += (SUINT)(b) * (c))
119 SUINT a0, a1, a2, a3, b0, b1, b2, b3;
159 a0 = ((SUINT)W4 * row[0]) + (1 << (ROW_SHIFT + extra_shift - 1));
164 a0 += (SUINT)W2 * row[2];
165 a1 += (SUINT)W6 * row[2];
166 a2 -= (SUINT)W6 * row[2];
167 a3 -= (SUINT)W2 * row[2];
183 a0 += (SUINT) W4*row[4] + (SUINT)W6*row[6];
184 a1 += (SUINT)- W4*row[4] - (SUINT)W2*row[6];
[all …]
Dh264idct_template.c43 const SUINT z0= block[i + 4*0] + (unsigned)block[i + 4*2]; in FUNCC()
44 const SUINT z1= block[i + 4*0] - (unsigned)block[i + 4*2]; in FUNCC()
45 const SUINT z2= (block[i + 4*1]>>1) - (unsigned)block[i + 4*3]; in FUNCC()
46 const SUINT z3= block[i + 4*1] + (unsigned)(block[i + 4*3]>>1); in FUNCC()
55 const SUINT z0= block[0 + 4*i] + (SUINT)block[2 + 4*i]; in FUNCC()
56 const SUINT z1= block[0 + 4*i] - (SUINT)block[2 + 4*i]; in FUNCC()
57 const SUINT z2= (block[1 + 4*i]>>1) - (SUINT)block[3 + 4*i]; in FUNCC()
58 const SUINT z3= block[1 + 4*i] + (SUINT)(block[3 + 4*i]>>1); in FUNCC()
264 const SUINT z0= temp[4*0+i] + temp[4*2+i]; in FUNCC()
265 const SUINT z1= temp[4*0+i] - temp[4*2+i]; in FUNCC()
[all …]
Dflacdsp.c52 SUINT c = coeffs[0]; in flac_lpc_16_c()
53 SUINT d = decoded[0]; in flac_lpc_16_c()
62 d = decoded[j] += (SUINT)(s0 >> qlevel); in flac_lpc_16_c()
64 decoded[j + 1] += (SUINT)(s1 >> qlevel); in flac_lpc_16_c()
69 sum += coeffs[j] * (SUINT)decoded[j]; in flac_lpc_16_c()
Dmpegaudio.h69 # define SUINTFLOAT SUINT
74 # define SUINTFLOAT SUINT
Ddct32_template.c27 #define SUINT int macro
30 #define SUINT unsigned macro
45 # define SUINTFLOAT SUINT
Dgsmdec_template.c44 return (int)(a * (SUINT)b + (1 << 14)) >> 15; in gsm_mult()
Ddca_xll.c655 buf[j + k] -= (SUINT)clip23(norm16(err)); in chs_filter_band_data()
720 msb[n] = msb[n] * (SUINT)(1 << shift) + (lsb[n] << adj); in chs_assemble_msbs_lsbs()
723 msb[n] = msb[n] * (SUINT)(1 << shift); in chs_assemble_msbs_lsbs()
1311 dst[n] += (SUINT)clip23((mul16(src[n], scale_inv) + round) >> shift); in combine_residual_frame()
1449 plane[k] = av_clip_int16(samples[k] * (SUINT)(1 << shift)); in ff_dca_xll_filter_frame()
1453 plane[k] = clip23(samples[k] * (SUINT)(1 << shift)) * (1 << 8); in ff_dca_xll_filter_frame()
Ddcadsp.c304 dst[i] += (SUINT)((int)(src[i] * (SUINT)coeff + (1 << 2)) >> 3); in decor_c()
Dffv1dec_template.c122 … sample[1][x] = av_mod_uintp2(RENAME(predict)(sample[1] + x, sample[0] + x) + (SUINT)diff, bits); in RENAME()
Dmpegaudiodec_template.c231 if (e > (SUINT)31) in l3_unscale()
1085 SUINT tmp0 = ptr[-1-j]; \
1086 SUINT tmp1 = ptr[ j]; \
1087 SUINT tmp2 = MULH(tmp0 + tmp1, csa_table[j][0]); \
Dvp3dsp.c45 #define M(a, b) ((int)((SUINT)(a) * (b)) >> 16)
Dgolomb.h513 buf += ((SUINT)i << k); in get_ur_golomb_jpegls()
Drv34.c517 return (int)(val * (SUINT)mul + 0x2000) >> 14; in calc_add_mv()
/third_party/ffmpeg/doc/
Dundefined.txt25 SUINT
38 To avoid this confusion a new type was introduced, "SUINT" is the C "unsigned"
41 SUINT a,b,c;
/third_party/ffmpeg/libavutil/
Dinternal.h205 #define SUINT int macro
208 #define SUINT unsigned macro