Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavfilter/
Dvf_lensfun.c324 int new_x_int, new_y_int; in distortion_correction_filter_slice() local
332new_x_int = thread_data->distortion_coords[x * 2 * 3 + y * thread_data->width * 2 * 3 + rgb_index … in distortion_correction_filter_slice()
334 …if (new_x_int < 0 || new_x_int >= thread_data->width || new_y_int < 0 || new_y_int >= thread_data-… in distortion_correction_filter_slice()
337 …* 3 + rgb_index + y * thread_data->linesize_out] = thread_data->data_in[new_x_int * 3 + rgb_index … in distortion_correction_filter_slice()
343 new_x_int = new_x; in distortion_correction_filter_slice()
346 …if (new_x_int < 0 || new_x_int + 1 >= thread_data->width || new_y_int < 0 || new_y_int + 1 >= thre… in distortion_correction_filter_slice()
350 …thread_data->data_in[ new_x_int * 3 + rgb_index + new_y_int * thread_data->linesize_in]… in distortion_correction_filter_slice()
351 …+ thread_data->data_in[(new_x_int + 1) * 3 + rgb_index + new_y_int * thread_data->linesize_i… in distortion_correction_filter_slice()
352 …+ thread_data->data_in[ new_x_int * 3 + rgb_index + (new_y_int + 1) * thread_data->linesize_i… in distortion_correction_filter_slice()
353 …+ thread_data->data_in[(new_x_int + 1) * 3 + rgb_index + (new_y_int + 1) * thread_data->linesize_i… in distortion_correction_filter_slice()
[all …]