summaryrefslogtreecommitdiffstats
path: root/filters/filter.c
diff options
context:
space:
mode:
authorNRK <nrk@disroot.org>2023-10-19 18:18:52 +0600
committersfan5 <sfan5@live.de>2023-10-20 21:31:09 +0200
commit2070331f649a1e19021d62d4e3a176dcd40732f4 (patch)
treea41f1f4931ba1e3d4ae242be285eee18de650f38 /filters/filter.c
parent2fa695c3f9d4164344228ef4083e87369de3bb33 (diff)
downloadmpv-2070331f649a1e19021d62d4e3a176dcd40732f4.tar.bz2
mpv-2070331f649a1e19021d62d4e3a176dcd40732f4.tar.xz
osdep: remove atomic.h
replace it with <stdatomic.h> and replace the mp_atomic_* typedefs with explicit _Atomic qualified types. also add missing config.h includes on some files.
Diffstat (limited to 'filters/filter.c')
-rw-r--r--filters/filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/filter.c b/filters/filter.c
index 0fd79b83e2..c3d8bc059c 100644
--- a/filters/filter.c
+++ b/filters/filter.c
@@ -6,7 +6,7 @@
#include "common/common.h"
#include "common/global.h"
#include "common/msg.h"
-#include "osdep/atomic.h"
+#include <stdatomic.h>
#include "osdep/timer.h"
#include "video/hwdec.h"
#include "video/img_format.h"