Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(309)

Side by Side Diff: source/libvpx/vp9/decoder/vp9_thread.c

Issue 168343002: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: libvpx: Pull from upstream Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « source/libvpx/vp9/decoder/vp9_thread.h ('k') | source/libvpx/vp9/encoder/vp9_bitstream.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 Google Inc. All Rights Reserved. 1 // Copyright 2013 Google Inc. All Rights Reserved.
2 // 2 //
3 // Use of this source code is governed by a BSD-style license 3 // Use of this source code is governed by a BSD-style license
4 // that can be found in the COPYING file in the root of the source 4 // that can be found in the COPYING file in the root of the source
5 // tree. An additional intellectual property rights grant can be found 5 // tree. An additional intellectual property rights grant can be found
6 // in the file PATENTS. All contributing project authors may 6 // in the file PATENTS. All contributing project authors may
7 // be found in the AUTHORS file in the root of the source tree. 7 // be found in the AUTHORS file in the root of the source tree.
8 // ----------------------------------------------------------------------------- 8 // -----------------------------------------------------------------------------
9 // 9 //
10 // Multi-threaded worker 10 // Multi-threaded worker
11 // 11 //
12 // Original source: 12 // Original source:
13 // http://git.chromium.org/webm/libwebp.git 13 // http://git.chromium.org/webm/libwebp.git
14 // 100644 blob eff8f2a8c20095aade3c292b0e9292dac6cb3587 src/utils/thread.c 14 // 100644 blob eff8f2a8c20095aade3c292b0e9292dac6cb3587 src/utils/thread.c
15 15
16 16
17 #include <assert.h> 17 #include <assert.h>
18 #include <string.h> // for memset() 18 #include <string.h> // for memset()
19 #include "./vp9_thread.h" 19 #include "./vp9_thread.h"
20 20
21 #if defined(__cplusplus) || defined(c_plusplus) 21 #if defined(__cplusplus) || defined(c_plusplus)
22 extern "C" { 22 extern "C" {
23 #endif 23 #endif
24 24
25 #if CONFIG_MULTITHREAD 25 #if CONFIG_MULTITHREAD
26 26
27 #if defined(_WIN32)
28
29 //------------------------------------------------------------------------------
30 // simplistic pthread emulation layer
31
32 #include <process.h> // NOLINT
33
34 // _beginthreadex requires __stdcall
35 #define THREADFN unsigned int __stdcall
36 #define THREAD_RETURN(val) (unsigned int)((DWORD_PTR)val)
37
38 static int pthread_create(pthread_t* const thread, const void* attr,
39 unsigned int (__stdcall *start)(void*), void* arg) {
40 (void)attr;
41 *thread = (pthread_t)_beginthreadex(NULL, /* void *security */
42 0, /* unsigned stack_size */
43 start,
44 arg,
45 0, /* unsigned initflag */
46 NULL); /* unsigned *thrdaddr */
47 if (*thread == NULL) return 1;
48 SetThreadPriority(*thread, THREAD_PRIORITY_ABOVE_NORMAL);
49 return 0;
50 }
51
52 static int pthread_join(pthread_t thread, void** value_ptr) {
53 (void)value_ptr;
54 return (WaitForSingleObject(thread, INFINITE) != WAIT_OBJECT_0 ||
55 CloseHandle(thread) == 0);
56 }
57
58 // Mutex
59 static int pthread_mutex_init(pthread_mutex_t* const mutex, void* mutexattr) {
60 (void)mutexattr;
61 InitializeCriticalSection(mutex);
62 return 0;
63 }
64
65 static int pthread_mutex_lock(pthread_mutex_t* const mutex) {
66 EnterCriticalSection(mutex);
67 return 0;
68 }
69
70 static int pthread_mutex_unlock(pthread_mutex_t* const mutex) {
71 LeaveCriticalSection(mutex);
72 return 0;
73 }
74
75 static int pthread_mutex_destroy(pthread_mutex_t* const mutex) {
76 DeleteCriticalSection(mutex);
77 return 0;
78 }
79
80 // Condition
81 static int pthread_cond_destroy(pthread_cond_t* const condition) {
82 int ok = 1;
83 ok &= (CloseHandle(condition->waiting_sem_) != 0);
84 ok &= (CloseHandle(condition->received_sem_) != 0);
85 ok &= (CloseHandle(condition->signal_event_) != 0);
86 return !ok;
87 }
88
89 static int pthread_cond_init(pthread_cond_t* const condition, void* cond_attr) {
90 (void)cond_attr;
91 condition->waiting_sem_ = CreateSemaphore(NULL, 0, 1, NULL);
92 condition->received_sem_ = CreateSemaphore(NULL, 0, 1, NULL);
93 condition->signal_event_ = CreateEvent(NULL, FALSE, FALSE, NULL);
94 if (condition->waiting_sem_ == NULL ||
95 condition->received_sem_ == NULL ||
96 condition->signal_event_ == NULL) {
97 pthread_cond_destroy(condition);
98 return 1;
99 }
100 return 0;
101 }
102
103 static int pthread_cond_signal(pthread_cond_t* const condition) {
104 int ok = 1;
105 if (WaitForSingleObject(condition->waiting_sem_, 0) == WAIT_OBJECT_0) {
106 // a thread is waiting in pthread_cond_wait: allow it to be notified
107 ok = SetEvent(condition->signal_event_);
108 // wait until the event is consumed so the signaler cannot consume
109 // the event via its own pthread_cond_wait.
110 ok &= (WaitForSingleObject(condition->received_sem_, INFINITE) !=
111 WAIT_OBJECT_0);
112 }
113 return !ok;
114 }
115
116 static int pthread_cond_wait(pthread_cond_t* const condition,
117 pthread_mutex_t* const mutex) {
118 int ok;
119 // note that there is a consumer available so the signal isn't dropped in
120 // pthread_cond_signal
121 if (!ReleaseSemaphore(condition->waiting_sem_, 1, NULL))
122 return 1;
123 // now unlock the mutex so pthread_cond_signal may be issued
124 pthread_mutex_unlock(mutex);
125 ok = (WaitForSingleObject(condition->signal_event_, INFINITE) ==
126 WAIT_OBJECT_0);
127 ok &= ReleaseSemaphore(condition->received_sem_, 1, NULL);
128 pthread_mutex_lock(mutex);
129 return !ok;
130 }
131
132 #else // _WIN32
133 # define THREADFN void*
134 # define THREAD_RETURN(val) val
135 #endif
136
137 //------------------------------------------------------------------------------ 27 //------------------------------------------------------------------------------
138 28
139 static THREADFN thread_loop(void *ptr) { // thread loop 29 static THREADFN thread_loop(void *ptr) { // thread loop
140 VP9Worker* const worker = (VP9Worker*)ptr; 30 VP9Worker* const worker = (VP9Worker*)ptr;
141 int done = 0; 31 int done = 0;
142 while (!done) { 32 while (!done) {
143 pthread_mutex_lock(&worker->mutex_); 33 pthread_mutex_lock(&worker->mutex_);
144 while (worker->status_ == OK) { // wait in idling mode 34 while (worker->status_ == OK) { // wait in idling mode
145 pthread_cond_wait(&worker->condition_, &worker->mutex_); 35 pthread_cond_wait(&worker->condition_, &worker->mutex_);
146 } 36 }
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 #endif 132 #endif
243 } 133 }
244 assert(worker->status_ == NOT_OK); 134 assert(worker->status_ == NOT_OK);
245 } 135 }
246 136
247 //------------------------------------------------------------------------------ 137 //------------------------------------------------------------------------------
248 138
249 #if defined(__cplusplus) || defined(c_plusplus) 139 #if defined(__cplusplus) || defined(c_plusplus)
250 } // extern "C" 140 } // extern "C"
251 #endif 141 #endif
OLDNEW
« no previous file with comments | « source/libvpx/vp9/decoder/vp9_thread.h ('k') | source/libvpx/vp9/encoder/vp9_bitstream.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698