Home
last modified time | relevance | path

Searched refs:slice_h (Results 1 – 6 of 6) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dfic.c35 int slice_h; member
55 int num_slices, slice_h; member
177 int slice_h = tctx->slice_h; in fic_decode_slice() local
190 for (y = 0; y < (slice_h >> !!p); y += 8) { in fic_decode_slice()
352 ctx->slice_h = 16 * (ctx->aligned_height >> 4) / nslices; in fic_decode_frame()
353 if (ctx->slice_h % 16) in fic_decode_frame()
354 ctx->slice_h = FFALIGN(ctx->slice_h - 16, 16); in fic_decode_frame()
377 int y_off = ctx->slice_h * slice; in fic_decode_frame()
378 int slice_h = ctx->slice_h; in fic_decode_frame() local
386 slice_h = FFALIGN(avctx->height - ctx->slice_h * (nslices - 1), 16); in fic_decode_frame()
[all …]
Dvc2enc_dwt.c259 int p_height, int slice_w, int slice_h) in ff_vc2enc_init_transforms() argument
267 s->buffer = av_calloc((p_stride + slice_w)*(p_height + slice_h), sizeof(dwtcoef)); in ff_vc2enc_init_transforms()
271 s->padding = (slice_h >> 1)*p_stride + (slice_w >> 1); in ff_vc2enc_init_transforms()
Dvc2enc_dwt.h51 int slice_w, int slice_h);
Dsnowdec.c553 int slice_h = block_h*(mb_y+1); in decode_frame() local
557 slice_h -= (block_h >> 1); in decode_frame()
592 for(; yd<slice_h; yd+=4){ in decode_frame()
597 for(; yq<slice_h && yq<h; yq++){ in decode_frame()
608 end_y = FFMIN(p->height, slice_h); in decode_frame()
/third_party/ffmpeg/libavfilter/
Dvf_dctdnoiz.c537 int i, x, y, bx, by, linesize, *iweights, max_slice_h, slice_h; in config_input() local
597 slice_h = (int)ceilf(s->pr_height / (float)s->nb_threads) + (s->bsize - 1) * 2; in config_input()
599 s->slices[i] = av_malloc_array(linesize, slice_h * sizeof(*s->slices[i])); in config_input()
686 const int slice_h = slice_end_ctx - slice_start_ctx; in filter_slice() local
696 memset(slice, 0, (slice_h + s->bsize - 1) * dst_linesize * sizeof(*slice)); in filter_slice()
699 for (y = 0; y < slice_h; y += s->step) { in filter_slice()
Dvf_scale.c809 int i, slice_h, slice_start, slice_end = 0; in scale_frame() local
814 slice_h = slice_end - slice_start; in scale_frame()
815 scale_slice(link, out, in, scale->sws, slice_start, slice_h, 1, 0); in scale_frame()