OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:h_decoding_thread
(Results
1 - 2
of
2
) sorted by null
/external/libvpx/vp8/decoder/
onyxd_int.h
110
pthread_t *
h_decoding_thread
;
member in struct:VP8Decompressor
threading.c
425
CHECK_MEM_ERROR(pbi->
h_decoding_thread
, vpx_malloc(sizeof(pthread_t) * pbi->decoding_thread_count));
443
pthread_create(&pbi->
h_decoding_thread
[ithread], 0, vp8_thread_decoding_proc, (&pbi->de_thread_data[ithread]));
483
pthread_join(pbi->
h_decoding_thread
[i], NULL);
493
if (pbi->
h_decoding_thread
)
495
vpx_free(pbi->
h_decoding_thread
);
496
pbi->
h_decoding_thread
= NULL;
Completed in 287 milliseconds