Home
last modified time | relevance | path

Searched refs:num_part (Results 1 – 4 of 4) sorted by relevance

/external/libvpx/vp8/decoder/
Ddecodframe.c431 int num_part; in setup_token_decoder() local
440 num_part = 1 << pc->multi_token_partition; in setup_token_decoder()
446 if (num_part > 1) in setup_token_decoder()
448 CHECK_MEM_ERROR(pbi->mbc, vpx_malloc(num_part * sizeof(vp8_reader))); in setup_token_decoder()
450 partition += 3 * (num_part - 1); in setup_token_decoder()
453 for (i = 0; i < num_part; i++) in setup_token_decoder()
461 if (i < num_part - 1) in setup_token_decoder()
487 if (pbi->decoding_thread_count > num_part - 1) in setup_token_decoder()
488 pbi->decoding_thread_count = num_part - 1; in setup_token_decoder()
887 int num_part = 1 << pc->multi_token_partition; in vp8_decode_frame() local
[all …]
Dthreading.c240 int num_part = 1 << pbi->common.multi_token_partition; in thread_decoding_proc() local
260 pbi->mb_row_di[ithread].mbd.current_bc = &pbi->mbc[mb_row%num_part]; in thread_decoding_proc()
687 int num_part = 1 << pbi->common.multi_token_partition; in vp8mt_decode_mb_rows() local
729 xd->current_bc = &pbi->mbc[mb_row%num_part]; in vp8mt_decode_mb_rows()
/external/libvpx/vp8/encoder/arm/armv5te/
Dvp8_packtokens_partitions_armv5.asm24 ; r2 int num_part
43 str r2, [sp, #20] ; save num_part
46 ; *size = 3*(num_part -1 );
47 sub r2, r2, #1 ; num_part - 1
48 add r2, r2, r2, lsl #1 ; 3*(num_part - 1)
418 cmp r10, r9 ; if(i<(num_part - 1))
/external/libvpx/vp8/encoder/
Dbitstream.c372 static void pack_tokens_into_partitions_c(VP8_COMP *cpi, unsigned char *cx_data, int num_part, int … in pack_tokens_into_partitions_c() argument
379 *size = 3 * (num_part - 1); in pack_tokens_into_partitions_c()
382 for (i = 0; i < num_part; i++) in pack_tokens_into_partitions_c()
392 for (mb_row = i; mb_row < cpi->common.mb_rows; mb_row += num_part) in pack_tokens_into_partitions_c()
576 if (i < (num_part - 1)) in pack_tokens_into_partitions_c()
1656 int num_part; in vp8_pack_bitstream() local
1658 num_part = 1 << pc->multi_token_partition; in vp8_pack_bitstream()
1660 pack_tokens_into_partitions(cpi, cx_data + bc->pos, num_part, &asize); in vp8_pack_bitstream()