Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavfilter/
Dvf_removelogo.c387 int start_posx, start_posy, end_posx, end_posy; in blur_pixel() local
397 start_posx = FFMAX(0, x - mask_size); in blur_pixel()
402 image_read_position = image_data + image_linesize * start_posy + start_posx; in blur_pixel()
403 mask_read_position = mask_data + mask_linesize * start_posy + start_posx; in blur_pixel()
406 for (i = start_posx; i <= end_posx; i++) { in blur_pixel()
409 if (!(*mask_read_position) && mask[mask_size][i - start_posx][j - start_posy]) { in blur_pixel()
418 image_read_position += (image_linesize - ((end_posx + 1) - start_posx)); in blur_pixel()
419 mask_read_position += (mask_linesize - ((end_posx + 1) - start_posx)); in blur_pixel()