summaryrefslogtreecommitdiffstats
path: root/player/playloop.c
diff options
context:
space:
mode:
authorLeo Izen <leo.izen@gmail.com>2020-08-31 16:45:04 -0400
committerLeo Izen <leo.izen@gmail.com>2020-08-31 17:01:22 -0400
commitcdc5932859fc241430fa1de87ca354cdd8dac96c (patch)
treee2dd311ad6c520c01656894d9a1a7c418025a82d /player/playloop.c
parent0ac724f0025d48e1372ac82c62d504aaadf19735 (diff)
downloadmpv-cdc5932859fc241430fa1de87ca354cdd8dac96c.tar.bz2
mpv-cdc5932859fc241430fa1de87ca354cdd8dac96c.tar.xz
player/playloop.c: reorder included headers per contribute.md
This commit sorts the included headers alphabetically and puts them in sections, as described by DOCS/contribute.md.
Diffstat (limited to 'player/playloop.c')
-rw-r--r--player/playloop.c31
1 files changed, 14 insertions, 17 deletions
diff --git a/player/playloop.c b/player/playloop.c
index bb0429e3b7..e50aa944d1 100644
--- a/player/playloop.c
+++ b/player/playloop.c
@@ -15,44 +15,41 @@
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <stddef.h>
-#include <stdbool.h>
+#include <assert.h>
#include <inttypes.h>
#include <math.h>
-#include <assert.h>
+#include <stdbool.h>
+#include <stddef.h>
+#include "client.h"
+#include "command.h"
#include "config.h"
+#include "core.h"
#include "mpv_talloc.h"
+#include "screenshot.h"
-#include "common/msg.h"
-#include "options/options.h"
+#include "audio/out/ao.h"
#include "common/common.h"
#include "common/encode.h"
+#include "common/msg.h"
+#include "common/playlist.h"
#include "common/recorder.h"
#include "common/stats.h"
+#include "demux/demux.h"
#include "filters/f_decoder_wrapper.h"
#include "filters/filter_internal.h"
-#include "options/m_config_frontend.h"
-#include "options/m_property.h"
-#include "common/playlist.h"
#include "input/input.h"
-
#include "misc/dispatch.h"
+#include "options/m_config_frontend.h"
+#include "options/m_property.h"
+#include "options/options.h"
#include "osdep/terminal.h"
#include "osdep/timer.h"
-
-#include "audio/out/ao.h"
-#include "demux/demux.h"
#include "stream/stream.h"
#include "sub/dec_sub.h"
#include "sub/osd.h"
#include "video/out/vo.h"
-#include "core.h"
-#include "client.h"
-#include "command.h"
-#include "screenshot.h"
-
// Wait until mp_wakeup_core() is called, since the last time
// mp_wait_events() was called.
void mp_wait_events(struct MPContext *mpctx)