mirror of https://github.com/mpv-player/mpv
various: add missing include in header flles
Mostly cosmetic
This commit is contained in:
parent
1810792031
commit
27f0a35c53
|
@ -2,6 +2,7 @@
|
||||||
#define MP_MSG_CONTROL_H
|
#define MP_MSG_CONTROL_H
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
#include "common/msg.h"
|
||||||
|
|
||||||
struct mpv_global;
|
struct mpv_global;
|
||||||
struct MPOpts;
|
struct MPOpts;
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
#define MP_TIMELINE_H_
|
#define MP_TIMELINE_H_
|
||||||
|
|
||||||
#include "common/common.h"
|
#include "common/common.h"
|
||||||
|
#include "misc/bstr.h"
|
||||||
|
|
||||||
// Single segment in a timeline.
|
// Single segment in a timeline.
|
||||||
struct timeline_part {
|
struct timeline_part {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
#include "filter.h"
|
#include "filter.h"
|
||||||
|
|
||||||
// A thread safe queue, which buffers a configurable number of frames like a
|
// A thread safe queue, which buffers a configurable number of frames like a
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
#include <stddef.h>
|
||||||
|
|
||||||
#include "filter.h"
|
#include "filter.h"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#ifndef MPV_MP_THREAD_POOL_H
|
#ifndef MPV_MP_THREAD_POOL_H
|
||||||
#define MPV_MP_THREAD_POOL_H
|
#define MPV_MP_THREAD_POOL_H
|
||||||
|
|
||||||
|
#include <stdbool.h>
|
||||||
struct mp_thread_pool;
|
struct mp_thread_pool;
|
||||||
|
|
||||||
// Create a thread pool with the given number of worker threads. This can return
|
// Create a thread pool with the given number of worker threads. This can return
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
#include "libmpv/client.h"
|
#include "libmpv/client.h"
|
||||||
|
#include "osdep/compiler.h"
|
||||||
|
|
||||||
struct MPContext;
|
struct MPContext;
|
||||||
struct mp_cmd;
|
struct mp_cmd;
|
||||||
|
|
Loading…
Reference in New Issue