Home
last modified time | relevance | path

Searched refs:winterface (Results 1 – 17 of 17) sorted by relevance

/external/libvpx/libvpx/vpx_util/
Dvpx_thread.c166 int vpx_set_worker_interface(const VPxWorkerInterface *const winterface) { in vpx_set_worker_interface() argument
167 if (winterface == NULL || winterface->init == NULL || in vpx_set_worker_interface()
168 winterface->reset == NULL || winterface->sync == NULL || in vpx_set_worker_interface()
169 winterface->launch == NULL || winterface->execute == NULL || in vpx_set_worker_interface()
170 winterface->end == NULL) { in vpx_set_worker_interface()
173 g_worker_interface = *winterface; in vpx_set_worker_interface()
Dvpx_thread.h426 int vpx_set_worker_interface(const VPxWorkerInterface *const winterface);
/external/libaom/libaom/aom_util/
Daom_thread.c197 int aom_set_worker_interface(const AVxWorkerInterface *const winterface) { in aom_set_worker_interface() argument
198 if (winterface == NULL || winterface->init == NULL || in aom_set_worker_interface()
199 winterface->reset == NULL || winterface->sync == NULL || in aom_set_worker_interface()
200 winterface->launch == NULL || winterface->execute == NULL || in aom_set_worker_interface()
201 winterface->end == NULL) { in aom_set_worker_interface()
204 g_worker_interface = *winterface; in aom_set_worker_interface()
Daom_thread.h424 int aom_set_worker_interface(const AVxWorkerInterface *const winterface);
/external/libvpx/libvpx/test/
Dvp9_thread_test.cc134 VPxWorkerInterface winterface = *vpx_get_worker_interface(); in TEST() local
137 case 0: winterface.init = NULL; break; in TEST()
138 case 1: winterface.reset = NULL; break; in TEST()
139 case 2: winterface.sync = NULL; break; in TEST()
140 case 3: winterface.launch = NULL; break; in TEST()
141 case 4: winterface.execute = NULL; break; in TEST()
142 case 5: winterface.end = NULL; break; in TEST()
144 EXPECT_EQ(0, vpx_set_worker_interface(&winterface)); in TEST()
/external/webp/src/utils/
Dthread_utils.c344 int WebPSetWorkerInterface(const WebPWorkerInterface* const winterface) { in WebPSetWorkerInterface() argument
345 if (winterface == NULL || in WebPSetWorkerInterface()
346 winterface->Init == NULL || winterface->Reset == NULL || in WebPSetWorkerInterface()
347 winterface->Sync == NULL || winterface->Launch == NULL || in WebPSetWorkerInterface()
348 winterface->Execute == NULL || winterface->End == NULL) { in WebPSetWorkerInterface()
351 g_worker_interface = *winterface; in WebPSetWorkerInterface()
Dthread_utils.h79 const WebPWorkerInterface* const winterface);
/external/libaom/libaom/av1/encoder/
Dethread.c379 const AVxWorkerInterface *const winterface = aom_get_worker_interface(); in create_enc_workers() local
402 winterface->init(worker); in create_enc_workers()
469 if (!winterface->reset(worker)) in create_enc_workers()
480 winterface->sync(worker); in create_enc_workers()
485 const AVxWorkerInterface *const winterface = aom_get_worker_interface(); in launch_enc_workers() local
495 winterface->execute(worker); in launch_enc_workers()
497 winterface->launch(worker); in launch_enc_workers()
502 const AVxWorkerInterface *const winterface = aom_get_worker_interface(); in sync_enc_workers() local
508 had_error |= !winterface->sync(worker); in sync_enc_workers()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_ethread.c80 const VPxWorkerInterface *const winterface = vpx_get_worker_interface(); in create_enc_workers() local
106 winterface->init(worker); in create_enc_workers()
126 if (!winterface->reset(worker)) in create_enc_workers()
134 winterface->sync(worker); in create_enc_workers()
141 const VPxWorkerInterface *const winterface = vpx_get_worker_interface(); in launch_enc_workers() local
160 winterface->execute(worker); in launch_enc_workers()
162 winterface->launch(worker); in launch_enc_workers()
168 winterface->sync(worker); in launch_enc_workers()
Dvp9_bitstream.c979 const VPxWorkerInterface *const winterface = vpx_get_worker_interface(); in encode_tiles_mt() local
1019 winterface->launch(worker); in encode_tiles_mt()
1021 winterface->execute(worker); in encode_tiles_mt()
1032 if (!winterface->sync(worker)) return 0; in encode_tiles_mt()
/external/libaom/libaom/av1/common/
Dthread_common.c401 const AVxWorkerInterface *const winterface = aom_get_worker_interface(); in loop_filter_rows_mt() local
459 winterface->execute(worker); in loop_filter_rows_mt()
461 winterface->launch(worker); in loop_filter_rows_mt()
467 winterface->sync(&workers[i]); in loop_filter_rows_mt()
852 const AVxWorkerInterface *const winterface = aom_get_worker_interface(); in foreach_rest_unit_in_planes_mt() local
896 winterface->execute(worker); in foreach_rest_unit_in_planes_mt()
898 winterface->launch(worker); in foreach_rest_unit_in_planes_mt()
904 winterface->sync(&workers[i]); in foreach_rest_unit_in_planes_mt()
/external/libvpx/libvpx/vp9/common/
Dvp9_thread_common.c162 const VPxWorkerInterface *const winterface = vpx_get_worker_interface(); in loop_filter_rows_mt() local
207 winterface->execute(worker); in loop_filter_rows_mt()
209 winterface->launch(worker); in loop_filter_rows_mt()
215 winterface->sync(&workers[i]); in loop_filter_rows_mt()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decoder.c306 const VPxWorkerInterface *const winterface = vpx_get_worker_interface(); in release_fb_on_decoder_exit() local
314 winterface->sync(&pbi->lf_worker); in release_fb_on_decoder_exit()
316 winterface->sync(&pbi->tile_workers[i]); in release_fb_on_decoder_exit()
Dvp9_decodeframe.c1694 const VPxWorkerInterface *const winterface = vpx_get_worker_interface(); in decode_tiles() local
1708 if (pbi->max_threads > 1 && !winterface->reset(&pbi->lf_worker)) { in decode_tiles()
1717 winterface->sync(&pbi->lf_worker); in decode_tiles()
1807 winterface->sync(&pbi->lf_worker); in decode_tiles()
1811 winterface->launch(&pbi->lf_worker); in decode_tiles()
1813 winterface->execute(&pbi->lf_worker); in decode_tiles()
1822 winterface->sync(&pbi->lf_worker); in decode_tiles()
1825 winterface->execute(&pbi->lf_worker); in decode_tiles()
1957 const VPxWorkerInterface *const winterface = vpx_get_worker_interface(); in decode_tiles_mt() local
1979 winterface->init(worker); in decode_tiles_mt()
[all …]
/external/libaom/libaom/av1/decoder/
Ddecoder.c466 const AVxWorkerInterface *const winterface = aom_get_worker_interface(); in av1_receive_compressed_data() local
473 winterface->sync(&pbi->lf_worker); in av1_receive_compressed_data()
475 winterface->sync(&pbi->tile_workers[i]); in av1_receive_compressed_data()
Ddecodeframe.c3777 const AVxWorkerInterface *const winterface = aom_get_worker_interface(); in reset_dec_workers() local
3791 winterface->sync(worker); in reset_dec_workers()
3806 const AVxWorkerInterface *const winterface = aom_get_worker_interface(); in launch_dec_workers() local
3816 winterface->execute(worker); in launch_dec_workers()
3818 winterface->launch(worker); in launch_dec_workers()
3824 const AVxWorkerInterface *const winterface = aom_get_worker_interface(); in sync_dec_workers() local
3829 aom_merge_corrupted_flag(&corrupted, !winterface->sync(worker)); in sync_dec_workers()
3837 const AVxWorkerInterface *const winterface = aom_get_worker_interface(); in decode_mt_init() local
3853 winterface->init(worker); in decode_mt_init()
3855 if (worker_idx < num_threads - 1 && !winterface->reset(worker)) { in decode_mt_init()
/external/libaom/libaom/av1/
Dav1_dx_iface.c436 const AVxWorkerInterface *const winterface = aom_get_worker_interface(); in init_decoder() local
466 winterface->init(worker); in init_decoder()
500 if (i != 0 && !winterface->reset(worker)) { in init_decoder()
527 const AVxWorkerInterface *const winterface = aom_get_worker_interface(); in decode_one() local
559 winterface->execute(worker); in decode_one()
759 const AVxWorkerInterface *const winterface = aom_get_worker_interface(); in decoder_get_frame() local
768 if (winterface->sync(worker)) { in decoder_get_frame()