summaryrefslogtreecommitdiffstats
path: root/filters/f_async_queue.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/f_async_queue.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/f_async_queue.c')
-rw-r--r--filters/f_async_queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/f_async_queue.c b/filters/f_async_queue.c
index 80c330524a..d7df39c13f 100644
--- a/filters/f_async_queue.c
+++ b/filters/f_async_queue.c
@@ -1,10 +1,10 @@
#include <limits.h>
#include <pthread.h>
+#include <stdatomic.h>
#include "audio/aframe.h"
#include "common/common.h"
#include "common/msg.h"
-#include <stdatomic.h>
#include "f_async_queue.h"
#include "filter_internal.h"