Searched refs:left_band (Results 1 – 2 of 2) sorted by relevance
108 enum AVPixelFormat pix_fmt, int top_band, int left_band) in av_picture_crop() argument123 dst->data[0] = src->data[0] + (top_band * src->linesize[0]) + left_band; in av_picture_crop()124 … dst->data[1] = src->data[1] + ((top_band >> y_shift) * src->linesize[1]) + (left_band >> x_shift); in av_picture_crop()125 … dst->data[2] = src->data[2] + ((top_band >> y_shift) * src->linesize[2]) + (left_band >> x_shift); in av_picture_crop()127 if(top_band % (1<<y_shift) || left_band % (1<<x_shift)) in av_picture_crop()129 dst->data[0] = src->data[0] + (top_band * src->linesize[0]) + (left_band * max_step[0]); in av_picture_crop()
3753 enum AVPixelFormat pix_fmt, int top_band, int left_band);