From cdc5932859fc241430fa1de87ca354cdd8dac96c Mon Sep 17 00:00:00 2001 From: Leo Izen Date: Mon, 31 Aug 2020 16:45:04 -0400 Subject: 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. --- player/playloop.c | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) (limited to 'player') 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 . */ -#include -#include +#include #include #include -#include +#include +#include +#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) -- cgit v1.2.3