Lines Matching defs:end_y
222 static void dequantize_slice_buffered(SnowContext *s, slice_buffer * sb, SubBand *b, IDWTELEM *src, int stride, int start_y, int end_y){
231 for(y=start_y; y<end_y; y++){
245 static void correlate_slice_buffered(SnowContext *s, slice_buffer * sb, SubBand *b, IDWTELEM *src, int stride, int inverse, int use_median, int start_y, int end_y){
255 for(y=start_y; y<end_y; y++){
543 int end_y;
560 int end_y;
565 end_y = (((block_h * our_mb_end) >> (s->spatial_decomposition_count - level)) + s->spatial_decomposition_count - level + extra);
568 end_y = FFMAX(0, end_y - (block_h >> (1+s->spatial_decomposition_count - level)));
571 end_y = FFMIN(b->height, end_y);
573 if (start_y != end_y){
576 int correlate_end_y = FFMIN(b->height, end_y + 1);
580 dequantize_slice_buffered(s, &s->sb, correlate_band, correlate_band->ibuf, correlate_band->stride, start_y, end_y);
583 decode_subband_slice_buffered(s, b, &s->sb, start_y, end_y, decode_state[level][orientation]);
604 end_y = FFMIN(p->height, slice_h);
605 while(y < end_y)