Searched refs:sumb (Results 1 - 3 of 3) sorted by relevance
/third_party/ffmpeg/libavcodec/x86/ |
H A D | mpegaudiodsp.c | 115 LOCAL_ALIGNED_16(float, sumb, [17]); in apply_window_mp3() 144 apply_window(in + 32, win + 48, win + 640, sumb, sumd, 16); in apply_window_mp3() 149 sumb[16] = 0; in apply_window_mp3() 152 #define SUMS(suma, sumb, sumc, sumd, out1, out2) \ in apply_window_mp3() 160 "addps " #sumb "(%2), %%xmm0 \n\t" \ in apply_window_mp3() 171 :"r"(&suma[0]), "r"(&sumb[0]), "r"(&sumc[0]), "r"(&sumd[0]) in apply_window_mp3() 183 *out2 = sumb[16-j] + sumc[ j]; in apply_window_mp3()
|
/third_party/ffmpeg/libavcodec/ppc/ |
H A D | mpegaudiodsp_altivec.c | 97 LOCAL_ALIGNED_16(float, sumb, [17]); in apply_window_mp3() 109 apply_window(in + 32, win + 48, win + 640, sumb, sumd, 16); in apply_window_mp3() 114 sumb[16] = 0; in apply_window_mp3() 122 *out2 = -sumb[16-j] - sumc[ j]; in apply_window_mp3()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_convolution.c | 119 float sumb = AV_RN16A(&c[0][2 * x]) * -1 + AV_RN16A(&c[2][2 * x]) * 1 + AV_RN16A(&c[3][2 * x]) * -1 + in filter16_prewitt() local 122 dst[x] = av_clip(sqrtf(suma*suma + sumb*sumb) * scale + delta, 0, peak); in filter16_prewitt() 136 float sumb = AV_RN16A(&c[4][2 * x]) * 1 + AV_RN16A(&c[3][2 * x]) * -1; in filter16_roberts() local 138 dst[x] = av_clip(sqrtf(suma*suma + sumb*sumb) * scale + delta, 0, peak); in filter16_roberts() 153 float sumb = AV_RN16A(&c[0][2 * x]) * -1 + AV_RN16A(&c[2][2 * x]) * 1 + AV_RN16A(&c[3][2 * x]) * -2 + in filter16_sobel() local 156 dst[x] = av_clip(sqrtf(suma*suma + sumb*sumb) * scale + delta, 0, peak); in filter16_sobel() 171 float sumb in filter16_scharr() local 242 float sumb = c0[x] * -1 + c2[x] * 1 + c3[x] * -1 + filter_prewitt() local 258 float sumb = c[4][x] * 1 + c[3][x] * -1; filter_roberts() local 277 float sumb = c0[x] * -1 + c2[x] * 1 + c3[x] * -2 + filter_sobel() local 297 float sumb = c0[x] * -47 + c2[x] * 47 + c3[x] * -162 + filter_scharr() local [all...] |
Completed in 4 milliseconds