Searched refs:ii_lz_32 (Results 1 - 3 of 3) sorted by relevance
/third_party/ffmpeg/tests/checkasm/ |
H A D | vf_nlmeans.c | 48 const int ii_lz_32 = FFALIGN(ii_w + 1, 4); in checkasm_check_nlmeans() local 49 uint32_t *ii_orig_ref = av_calloc(ii_h + 1, ii_lz_32 * sizeof(*ii_orig_ref)); in checkasm_check_nlmeans() 50 uint32_t *ii_ref = ii_orig_ref + ii_lz_32 + 1; in checkasm_check_nlmeans() 51 uint32_t *ii_orig_new = av_calloc(ii_h + 1, ii_lz_32 * sizeof(*ii_orig_new)); in checkasm_check_nlmeans() 52 uint32_t *ii_new = ii_orig_new + ii_lz_32 + 1; in checkasm_check_nlmeans() 83 memset(ii_ref, 0, (ii_lz_32 * ii_h - 1) * sizeof(*ii_ref)); in checkasm_check_nlmeans() 84 memset(ii_new, 0, (ii_lz_32 * ii_h - 1) * sizeof(*ii_new)); in checkasm_check_nlmeans() 86 call_ref(ii_ref + starty_safe*ii_lz_32 + startx_safe, ii_lz_32, in checkasm_check_nlmeans() 90 call_new(ii_new + starty_safe*ii_lz_32 in checkasm_check_nlmeans() [all...] |
/third_party/ffmpeg/libavfilter/tests/ |
H A D | integral.c | 54 const int ii_lz_32 = ((ii_w + 1) + 3) & ~3; in main() local 57 uint32_t *ii = av_calloc(ii_h + 1, ii_lz_32 * sizeof(*ii)); in main() 58 uint32_t *ii2 = av_calloc(ii_h + 1, ii_lz_32 * sizeof(*ii2)); in main() 63 ii_start = ii + ii_lz_32 + 1; // skip top 0-line and left 0-column in main() 64 ii_start2 = ii2 + ii_lz_32 + 1; // skip top 0-line and left 0-column in main() 72 compute_ssd_integral_image(&dsp, ii_start, ii_lz_32, in main() 74 display_integral(ii_start, ii_w, ii_h, ii_lz_32); in main() 76 compute_unsafe_ssd_integral_image(ii_start2, ii_lz_32, in main() 81 display_integral(ii_start2, ii_w, ii_h, ii_lz_32); in main() 83 if (memcmp(ii, ii2, (ii_h+1) * ii_lz_32 * sizeo in main() [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_nlmeans.c | 55 ptrdiff_t ii_lz_32; // linesize in 32-bit units of the integral image member 259 s->ii_lz_32 = FFALIGN(s->ii_w + 1, 4); in config_input() 262 s->ii_orig = av_calloc(s->ii_h + 1, s->ii_lz_32 * sizeof(*s->ii_orig)); in config_input() 267 s->ii = s->ii_orig + s->ii_lz_32 + 1; in config_input() 300 const uint32_t *ii = td->ii_start + (starty - p - 1) * s->ii_lz_32 - p - 1; in nlmeans_slice() 302 const int dist_d = dist_b * s->ii_lz_32; in nlmeans_slice() 319 ii += s->ii_lz_32; in nlmeans_slice() 352 const uint32_t *centered_ii = s->ii + e*s->ii_lz_32 + e; in nlmeans_plane() 367 .ii_start = centered_ii + offy*s->ii_lz_32 + offx, in nlmeans_plane() 371 compute_ssd_integral_image(&s->dsp, s->ii, s->ii_lz_32, in nlmeans_plane() [all...] |
Completed in 2 milliseconds