RADIUS            930 3rdparty/libwebp/enc/picture.c     const int y_0 = (y - RADIUS < 0) ? 0 : y - RADIUS;
RADIUS            931 3rdparty/libwebp/enc/picture.c     const int y_1 = (y + RADIUS + 1 >= h) ? h : y + RADIUS + 1;
RADIUS            933 3rdparty/libwebp/enc/picture.c       const int x_0 = (x - RADIUS < 0) ? 0 : x - RADIUS;
RADIUS            934 3rdparty/libwebp/enc/picture.c       const int x_1 = (x + RADIUS + 1 >= w) ? w : x + RADIUS + 1;