Lines Matching defs:wblocks
96 int16_t *wblocks;
203 memset(s->wblocks, 0, s->wblocks_size);
206 int16_t *block = s->wblocks + scantable[i];
245 memset(s->wblocks, 0, s->wblocks_size);
249 int16_t *block = s->wblocks + scantable[i];
325 av_fast_padded_malloc(&s->wblocks, &s->wblocks_size,
326 64 * s->blocks_w * sizeof(*s->wblocks));
327 if (!s->wblocks)
336 s->wblocks[64 * x] += offset;
338 frame->linesize[plane], s->wblocks + 64 * x);
403 av_fast_padded_malloc(&s->wblocks, &s->wblocks_size,
404 64 * s->blocks_w * sizeof(*s->wblocks));
405 if (!s->wblocks)
437 s->idsp.idct(s->wblocks + x * 64);
439 s->wblocks[i + x * 64] = (s->wblocks[i + x * 64] + 1) & 0xFFFC;
440 s->idsp.add_pixels_clamped(&s->wblocks[x*64], frame->data[plane] + (s->blocks_h - 1 - y) * 8 * frame->linesize[plane] + x * 8,
445 frame->linesize[plane], s->wblocks + x * 64);
487 av_fast_padded_malloc(&s->wblocks, &s->wblocks_size,
488 64 * s->blocks_w * sizeof(*s->wblocks));
489 if (!s->wblocks)
506 frame->linesize[plane], s->wblocks + 64 * x);
1278 av_freep(&s->wblocks);