Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Beauzée-Luyssen <hugo@videolan.org>2018-09-20 14:21:08 +0300
committerRonald S. Bultje <rsbultje@gmail.com>2018-09-22 14:59:24 +0300
commit707a32a57df226e3364dcc4373fc32ae7a69af91 (patch)
tree7f2705182960064fe70088ff1c39fe9d356e2ff1 /src/internal.h
parente2892ffa2dd1e893d0229c5fcbe0bbbee8e11c20 (diff)
Add & use a thread compatibility layer
Diffstat (limited to 'src/internal.h')
-rw-r--r--src/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal.h b/src/internal.h
index ffb2b64..b538ead 100644
--- a/src/internal.h
+++ b/src/internal.h
@@ -28,7 +28,6 @@
#ifndef __DAV1D_SRC_INTERNAL_H__
#define __DAV1D_SRC_INTERNAL_H__
-#include <pthread.h>
#include <stdatomic.h>
#include "dav1d/data.h"
@@ -54,6 +53,7 @@ typedef struct Dav1dTileContext Dav1dTileContext;
#include "src/picture.h"
#include "src/recon.h"
#include "src/ref_mvs.h"
+#include "src/thread.h"
typedef struct Dav1dDSPContext {
Dav1dIntraPredDSPContext ipred;