mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 14:57:32 +09:00
Update libaom to rev b25610052a1398032320008d69b51d2da94f5928
This commit is contained in:
parent
8493557d20
commit
3d109dd4fc
240 changed files with 16977 additions and 6139 deletions
5
third_party/aom/aom_util/aom_thread.h
vendored
5
third_party/aom/aom_util/aom_thread.h
vendored
|
|
@ -369,7 +369,8 @@ typedef enum {
|
|||
} AVxWorkerStatus;
|
||||
|
||||
// Function to be called by the worker thread. Takes two opaque pointers as
|
||||
// arguments (data1 and data2), and should return false in case of error.
|
||||
// arguments (data1 and data2). Should return true on success and return false
|
||||
// in case of error.
|
||||
typedef int (*AVxWorkerHook)(void *, void *);
|
||||
|
||||
// Platform-dependent implementation details for the worker.
|
||||
|
|
@ -382,7 +383,7 @@ typedef struct {
|
|||
AVxWorkerHook hook; // hook to call
|
||||
void *data1; // first argument passed to 'hook'
|
||||
void *data2; // second argument passed to 'hook'
|
||||
int had_error; // return value of the last call to 'hook'
|
||||
int had_error; // true if a call to 'hook' returned false
|
||||
} AVxWorker;
|
||||
|
||||
// The interface for all thread-worker related functions. All these functions
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue