Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
Dvp9_thread.c34 while (worker->status_ == OK) { // wait in idling mode in thread_loop()
37 if (worker->status_ == WORK) { in thread_loop()
39 worker->status_ = OK; in thread_loop()
40 } else if (worker->status_ == NOT_OK) { // finish the worker in thread_loop()
54 if (worker->status_ < OK) return; in change_state()
58 while (worker->status_ != OK) { in change_state()
63 worker->status_ = new_status; in change_state()
75 worker->status_ = NOT_OK; in vp9_worker_init()
82 assert(worker->status_ <= OK); in vp9_worker_sync()
89 if (worker->status_ < OK) { in vp9_worker_reset()
[all …]
Dvp9_thread.h173 VP9WorkerStatus status_; member