Lines Matching refs:dwtcoef
30 static av_always_inline void deinterleave(dwtcoef *linell, ptrdiff_t stride,
31 int width, int height, dwtcoef *synthl)
35 dwtcoef *linehl = linell + width;
36 dwtcoef *linelh = linell + height*stride;
37 dwtcoef *linehh = linelh + width;
55 static void vc2_subband_dwt_97(VC2TransformContext *t, dwtcoef *data,
59 dwtcoef *datal = data, *synth = t->buffer, *synthl = synth;
140 static void vc2_subband_dwt_53(VC2TransformContext *t, dwtcoef *data,
144 dwtcoef *synth = t->buffer, *synthl = synth, *datal = data;
214 static av_always_inline void dwt_haar(VC2TransformContext *t, dwtcoef *data,
219 dwtcoef *synth = t->buffer, *synthl = synth, *datal = data;
246 static void vc2_subband_dwt_haar(VC2TransformContext *t, dwtcoef *data,
252 static void vc2_subband_dwt_haar_shift(VC2TransformContext *t, dwtcoef *data,
267 s->buffer = av_calloc((p_stride + slice_w)*(p_height + slice_h), sizeof(dwtcoef));