Searched refs:steps_y (Results 1 - 5 of 5) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvf_unsharp.c63 const int steps_y = fp->steps_y; local
72 for (y = 0; y < 2 * steps_y; y++)
75 for (y = -steps_y; y < height + steps_y; y++) {
86 for (z = 0; z < steps_y * 2; z += 2) {
90 if (x >= steps_x && y >= steps_y) {
91 const uint8_t *srx = src - steps_y * src_stride + x - steps_x;
92 uint8_t *dsx = dst - steps_y * dst_stride + x - steps_x;
130 fp->steps_y
[all...]
H A Dunsharp.h61 int steps_y; ///< vertical step count member in struct:UnsharpFilterParam
H A Dunsharp_opencl_kernel.h86 int steps_y = LU_RADIUS_Y/2;
89 for (i = -steps_y; i <= steps_y; i++) {
94 maskIndex = (i + steps_y)*LU_RADIUS_X + j + steps_x;
167 int steps_y = CH_RADIUS_Y/2;
170 for (i = -steps_y; i <= steps_y; i++) {
175 maskIndex = (i + steps_y)*CH_RADIUS_X + j + steps_x;
H A Dunsharp_opencl.c138 step_y[0] = unsharp->luma.steps_y;
139 step_y[1] = unsharp->chroma.steps_y;
241 FF_OPENCL_PARAM_INFO(unsharp->luma.steps_y),
243 FF_OPENCL_PARAM_INFO(unsharp->chroma.steps_y),
282 sizeof(uint32_t) * (2 * unsharp->luma.steps_x + 1) * (2 * unsharp->luma.steps_y + 1),
287 sizeof(uint32_t) * (2 * unsharp->chroma.steps_x + 1) * (2 * unsharp->chroma.steps_y + 1),
301 2*unsharp->luma.steps_x+1, 2*unsharp->luma.steps_y+1, 2*unsharp->chroma.steps_x+1, 2*unsharp->chroma.steps_y+1);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dvf_unsharp.c55 int steps_y; ///< vertical step count member in struct:FilterParam
87 for (y = 0; y < 2 * fp->steps_y; y++)
90 for (y = -fp->steps_y; y < height + fp->steps_y; y++) {
101 for (z = 0; z < fp->steps_y * 2; z += 2) {
105 if (x >= fp->steps_x && y >= fp->steps_y) {
106 uint8_t* srx = src - fp->steps_y * src_stride + x - fp->steps_x;
107 uint8_t* dsx = dst - fp->steps_y * dst_stride + x - fp->steps_x;
127 fp->steps_y = msize_y / 2;
128 fp->scalebits = (fp->steps_x + fp->steps_y) *
[all...]

Completed in 111 milliseconds