HomeSort by relevance Sort by last modified time
    Searched refs:h_event_mbrencoding (Results 1 - 3 of 3) sorted by null

  /external/libvpx/vp8/encoder/
ethreading.c 40 //if(WaitForSingleObject(cpi->h_event_mbrencoding[ithread], INFINITE) == WAIT_OBJECT_0)
41 if (sem_wait(&cpi->h_event_mbrencoding[ithread]) == 0)
428 CHECK_MEM_ERROR(cpi->h_event_mbrencoding, vpx_malloc(sizeof(sem_t) * cpi->encoding_thread_count));
441 //cpi->h_event_mbrencoding[ithread] = CreateEvent(NULL, FALSE, FALSE, NULL);
442 sem_init(&cpi->h_event_mbrencoding[ithread], 0, 0);
479 //SetEvent(cpi->h_event_mbrencoding[i]);
480 sem_post(&cpi->h_event_mbrencoding[i]);
485 sem_destroy(&cpi->h_event_mbrencoding[i]);
488 vpx_free(cpi->h_event_mbrencoding);
onyx_int.h 593 sem_t *h_event_mbrencoding; member in struct:__anon5136
encodeframe.c 721 //SetEvent(cpi->h_event_mbrencoding[i]);
722 sem_post(&cpi->h_event_mbrencoding[i]);
    [all...]

Completed in 171 milliseconds