summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)