Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavcodec/
Dfic.c36 int slice_h; member
56 int num_slices, slice_h; member
178 int slice_h = tctx->slice_h; in fic_decode_slice() local
191 for (y = 0; y < (slice_h >> !!p); y += 8) { in fic_decode_slice()
353 ctx->slice_h = 16 * (ctx->aligned_height >> 4) / nslices; in fic_decode_frame()
354 if (ctx->slice_h % 16) in fic_decode_frame()
355 ctx->slice_h = FFALIGN(ctx->slice_h - 16, 16); in fic_decode_frame()
378 int y_off = ctx->slice_h * slice; in fic_decode_frame()
379 int slice_h = ctx->slice_h; in fic_decode_frame() local
387 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.c549 int slice_h = block_h*(mb_y+1); in decode_frame() local
553 slice_h -= (block_h >> 1); in decode_frame()
588 for(; yd<slice_h; yd+=4){ in decode_frame()
593 for(; yq<slice_h && yq<h; yq++){ in decode_frame()
604 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()
679 const int slice_h = slice_end_ctx - slice_start_ctx; in filter_slice() local
689 memset(slice, 0, (slice_h + s->bsize - 1) * dst_linesize * sizeof(*slice)); in filter_slice()
692 for (y = 0; y < slice_h; y += s->step) { in filter_slice()
/third_party/ffmpeg/libswscale/
Dswscale.c1018 int slice_h = srcSliceH; in scale_internal() local
1035 slice_h = dstSliceH; in scale_internal()
1038 ret = c->convert_unscaled(c, src2, srcStride2, offset, slice_h, in scale_internal()