RADIUS           1142 third_party/libwebp/enc/picture.c     const int y_0 = (y - RADIUS < 0) ? 0 : y - RADIUS;
RADIUS           1143 third_party/libwebp/enc/picture.c     const int y_1 = (y + RADIUS + 1 >= h) ? h : y + RADIUS + 1;
RADIUS           1145 third_party/libwebp/enc/picture.c       const int x_0 = (x - RADIUS < 0) ? 0 : x - RADIUS;
RADIUS           1146 third_party/libwebp/enc/picture.c       const int x_1 = (x + RADIUS + 1 >= w) ? w : x + RADIUS + 1;