summaryrefslogtreecommitdiffstats
path: root/filters/filter.c
diff options
context:
space:
mode:
authorNRK <nrk@disroot.org>2023-10-19 20:26:26 +0600
committersfan5 <sfan5@live.de>2023-10-20 21:31:09 +0200
commitd05ef7fdc4eb527a940a1ec7449e8c5bf60f5862 (patch)
tree49a5e8f5bd1c07d890c8944728ee4985b68686f7 /filters/filter.c
parent450a69b1d6592d8bc45c28250b86ba4a8b1d8e54 (diff)
downloadmpv-d05ef7fdc4eb527a940a1ec7449e8c5bf60f5862.tar.bz2
mpv-d05ef7fdc4eb527a940a1ec7449e8c5bf60f5862.tar.xz
various: sort some standard headers
since i was going to fix the include order of stdatomic, might as well sort the surrouding includes in accordance with the project's coding style. some headers can sometime require specific include order. standard library headers usually don't. but mpv might "hack into" the standard headers (e.g pthreads) so that complicates things a bit more. hopefully nothing breaks. if it does, the style guide is to blame.
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 c3d8bc059c..c386401c9f 100644
--- a/filters/filter.c
+++ b/filters/filter.c
@@ -1,12 +1,12 @@
#include <math.h>
#include <pthread.h>
+#include <stdatomic.h>
#include <libavutil/hwcontext.h>
#include "common/common.h"
#include "common/global.h"
#include "common/msg.h"
-#include <stdatomic.h>
#include "osdep/timer.h"
#include "video/hwdec.h"
#include "video/img_format.h"