Searched defs:num_workers (Results 1 - 5 of 5) sorted by relevance

/external/libvpx/libvpx/vp9/common/
H A Dvp9_thread_common.h39 int num_workers; member in struct:VP9LfSyncData
44 int width, int num_workers);
55 VPxWorker *workers, int num_workers,
H A Dvp9_thread_common.c110 mi_row += lf_sync->num_workers * MI_BLOCK_SIZE) {
167 const int num_workers = VPXMIN(nworkers, tile_cols); local
171 num_workers > lf_sync->num_workers) {
173 vp9_loop_filter_alloc(lf_sync, cm, sb_rows, cm->width, num_workers);
180 // The decoder is capping num_workers because it has been observed that using
187 for (i = 0; i < num_workers; ++i) {
202 if (i == num_workers - 1) {
210 for (i = 0; i < num_workers; ++i) {
220 VPxWorker *workers, int num_workers,
215 vp9_loop_filter_frame_mt(YV12_BUFFER_CONFIG *frame, VP9_COMMON *cm, struct macroblockd_plane planes[MAX_MB_PLANE], int frame_filter_level, int y_only, int partial_frame, VPxWorker *workers, int num_workers, VP9LfSync *lf_sync) argument
255 vp9_loop_filter_alloc(VP9LfSync *lf_sync, VP9_COMMON *cm, int rows, int width, int num_workers) argument
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ethread.c45 t += cpi->num_workers) {
71 const int num_workers = VPXMIN(cpi->oxcf.max_threads, tile_cols); local
77 if (cpi->num_workers == 0) {
78 int allocated_workers = num_workers;
98 ++cpi->num_workers;
132 for (i = 0; i < num_workers; i++) {
170 for (i = 0; i < num_workers; i++) {
177 if (i == cpi->num_workers - 1)
184 for (i = 0; i < num_workers; i++) {
189 for (i = 0; i < num_workers;
[all...]
H A Dvp9_encoder.h502 int num_workers; member in struct:VP9_COMP
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c1638 const int num_workers = VPXMIN(pbi->max_threads, tile_cols); local
1668 for (n = 0; n < num_workers; ++n) {
1697 if (num_workers == tile_cols) {
1723 for (n = 0; n < num_workers; ++n) {
1731 const int base = tile_cols / num_workers;
1732 const int remain = tile_cols % num_workers;
1735 for (n = 0; n < num_workers; ++n) {
1736 const int count = base + (remain + n) / num_workers;
1746 if (n == num_workers - 1) {
1768 for (n = 0; n < num_workers;
[all...]

Completed in 32 milliseconds