Home
last modified time | relevance | path

Searched refs:blocks_per_slice (Results 1 - 3 of 3) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dproresdec2.c470 int blocks_per_slice) in decode_dc_coeffs()
485 for (i = 1; i < blocks_per_slice; i++, out += 64) { in decode_dc_coeffs()
501 int16_t *out, int blocks_per_slice) in decode_ac_coeffs()
507 int log2_block_count = av_log2(blocks_per_slice); in decode_ac_coeffs()
515 block_mask = blocks_per_slice - 1; in decode_ac_coeffs()
552 int i, blocks_per_slice = slice->mb_count<<2; in decode_slice_luma() local
555 for (i = 0; i < blocks_per_slice; i++) in decode_slice_luma()
560 if ((ret = decode_dc_coeffs(&gb, blocks, blocks_per_slice)) < 0) in decode_slice_luma()
562 if ((ret = decode_ac_coeffs(avctx, &gb, blocks, blocks_per_slice)) < 0) in decode_slice_luma()
586 int i, j, blocks_per_slice in decode_slice_chroma() local
469 decode_dc_coeffs(GetBitContext *gb, int16_t *out, int blocks_per_slice) decode_dc_coeffs() argument
500 decode_ac_coeffs(AVCodecContext *avctx, GetBitContext *gb, int16_t *out, int blocks_per_slice) decode_ac_coeffs() argument
614 decode_slice_alpha(ProresContext *ctx, uint16_t *dst, int dst_stride, const uint8_t *buf, int buf_size, int blocks_per_slice) decode_slice_alpha() argument
[all...]
H A Dproresenc_kostya.c409 int blocks_per_slice, int scale) in encode_dcs()
420 for (i = 1; i < blocks_per_slice; i++, blocks += 64) { in encode_dcs()
435 int blocks_per_slice, in encode_acs()
443 max_coeffs = blocks_per_slice << 6; in encode_acs()
474 int blocks_per_slice = mbs_per_slice * blocks_per_mb; in encode_slice_plane() local
476 encode_dcs(pb, blocks, blocks_per_slice, qmat[0]); in encode_slice_plane()
477 encode_acs(pb, blocks, blocks_per_slice, plane_size_factor, in encode_slice_plane()
649 static int estimate_dcs(int *error, int16_t *blocks, int blocks_per_slice, in estimate_dcs() argument
663 for (i = 1; i < blocks_per_slice; i++, blocks += 64) { in estimate_dcs()
680 static int estimate_acs(int *error, int16_t *blocks, int blocks_per_slice, in estimate_acs() argument
408 encode_dcs(PutBitContext *pb, int16_t *blocks, int blocks_per_slice, int scale) encode_dcs() argument
434 encode_acs(PutBitContext *pb, int16_t *blocks, int blocks_per_slice, int plane_size_factor, const uint8_t *scan, const int16_t *qmat) encode_acs() argument
722 int blocks_per_slice; estimate_slice_plane() local
[all...]
H A Dproresenc_anatoliy.c247 int blocks_per_slice, int *qmat) in encode_dc_coeffs()
258 for (i = 1; i < blocks_per_slice; i++, idx += 64) { in encode_dc_coeffs()
278 int16_t *in, int blocks_per_slice, int *qmat, const uint8_t ff_prores_scan[64]) in encode_ac_coeffs()
286 for (j = 0; j < blocks_per_slice; j++) { in encode_ac_coeffs()
366 int blocks_per_slice; in encode_slice_plane() local
369 blocks_per_slice = mb_count << (2 - sub_sample_chroma); in encode_slice_plane()
372 encode_dc_coeffs(&pb, blocks, blocks_per_slice, qmat); in encode_slice_plane()
373 encode_ac_coeffs(&pb, blocks, blocks_per_slice, qmat, ff_prores_scan); in encode_slice_plane()
246 encode_dc_coeffs(PutBitContext *pb, int16_t *in, int blocks_per_slice, int *qmat) encode_dc_coeffs() argument
277 encode_ac_coeffs(PutBitContext *pb, int16_t *in, int blocks_per_slice, int *qmat, const uint8_t ff_prores_scan[64]) encode_ac_coeffs() argument

Completed in 5 milliseconds