]> git.sesse.net Git - x264/blobdiff - common/threadpool.h
x86: AVX2 predict_16x16_p
[x264] / common / threadpool.h
index 519737ce1390d4c03c3aae4a496d1ba28c506abf..2941458b64a6190e7a1aa35fa35d23f3b18b883f 100644 (file)
@@ -1,7 +1,9 @@
 /*****************************************************************************
- * threadpool.h: x264 threadpool module
+ * threadpool.h: thread pooling
  *****************************************************************************
- * Copyright (C) 2010 Steven Walters <kemuri9@gmail.com>
+ * Copyright (C) 2010-2013 x264 project
+ *
+ * Authors: Steven Walters <kemuri9@gmail.com>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -16,6 +18,9 @@
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
+ *
+ * This program is also available under a commercial proprietary license.
+ * For more information, contact us at licensing@x264.com.
  *****************************************************************************/
 
 #ifndef X264_THREADPOOL_H
@@ -23,7 +28,7 @@
 
 typedef struct x264_threadpool_t x264_threadpool_t;
 
-#if HAVE_PTHREAD
+#if HAVE_THREAD
 int   x264_threadpool_init( x264_threadpool_t **p_pool, int threads,
                             void (*init_func)(void *), void *init_arg );
 void  x264_threadpool_run( x264_threadpool_t *pool, void *(*func)(void *), void *arg );