Lines Matching refs:IDWTELEM
32 static av_always_inline void predict_slice_buffered(SnowContext *s, slice_buffer * sb, IDWTELEM * old_buffer, int plane_index, int add, int mb_y){
54 IDWTELEM * line = sb->line[y];
66 IDWTELEM * line = sb->line[y];
135 IDWTELEM * line = slice_buffer_get_line(sb, y * b->stride_line + b->buf_y_offset) + b->buf_x_offset;
136 memset(line, 0, b->width*sizeof(IDWTELEM));
222 static void dequantize_slice_buffered(SnowContext *s, slice_buffer * sb, SubBand *b, IDWTELEM *src, int stride, int start_y, int end_y){
233 IDWTELEM * line = slice_buffer_get_line(sb, (y * b->stride_line) + b->buf_y_offset) + b->buf_x_offset;
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){
249 IDWTELEM * line=0; // silence silly "could be used without having been initialized" warning
250 IDWTELEM * prev;
594 IDWTELEM * line = slice_buffer_get_line(&s->sb, yq);