Home
last modified time | relevance | path

Searched refs:slice_mb_count (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dproresdec2.c332 int slice_mb_count, mb_x, mb_y; in decode_picture_header() local
387 slice_mb_count = 1 << log2_slice_mb_width; in decode_picture_header()
397 while (ctx->mb_width - mb_x < slice_mb_count) in decode_picture_header()
398 slice_mb_count >>= 1; in decode_picture_header()
402 slice->mb_count = slice_mb_count; in decode_picture_header()
410 mb_x += slice_mb_count; in decode_picture_header()
412 slice_mb_count = 1 << log2_slice_mb_width; in decode_picture_header()
Dproresenc_anatoliy.c692 int slice_mb_count = DEFAULT_SLICE_MB_WIDTH; in prores_encode_picture() local
694 while (mb_width - mb_x < slice_mb_count) in prores_encode_picture()
695 slice_mb_count >>= 1; in prores_encode_picture()
698 unsafe_right = (avctx->width & 0xf) && (mb_x + slice_mb_count == mb_width); in prores_encode_picture()
700 sl_size = encode_slice(avctx, pic, mb_x, mb_y, slice_mb_count, in prores_encode_picture()
709 mb_x += slice_mb_count; in prores_encode_picture()