summaryrefslogtreecommitdiffstats
path: root/demux
diff options
context:
space:
mode:
authorThomas Weißschuh <thomas@t-8ch.de>2023-02-18 19:29:01 +0000
committerDudemanguy <random342@airmail.cc>2023-02-20 14:21:18 +0000
commit9efce6d4ae26114a23f41f0b3b2d0d9f0281547b (patch)
tree3fa0143e0d2fcf56ea66f4ea0027ab3e9aceedf9 /demux
parenta90355660c9d5a37ea3f24d6ef162baee4b09ab2 (diff)
downloadmpv-9efce6d4ae26114a23f41f0b3b2d0d9f0281547b.tar.bz2
mpv-9efce6d4ae26114a23f41f0b3b2d0d9f0281547b.tar.xz
various: drop unused #include "config.h"
Most sources don't need config.h. The inclusion only leads to lots of unneeded recompilation if the configuration is changed.
Diffstat (limited to 'demux')
-rw-r--r--demux/demux_playlist.c1
-rw-r--r--demux/demux_raw.c2
-rw-r--r--demux/ebml.c2
-rw-r--r--demux/packet.c2
4 files changed, 0 insertions, 7 deletions
diff --git a/demux/demux_playlist.c b/demux/demux_playlist.c
index d671bbaf65..a5f9f0af35 100644
--- a/demux/demux_playlist.c
+++ b/demux/demux_playlist.c
@@ -22,7 +22,6 @@
#include <libavutil/common.h>
-#include "config.h"
#include "common/common.h"
#include "options/options.h"
#include "common/msg.h"
diff --git a/demux/demux_raw.c b/demux/demux_raw.c
index 4884b78b37..86b0368300 100644
--- a/demux/demux_raw.c
+++ b/demux/demux_raw.c
@@ -15,8 +15,6 @@
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "config.h"
-
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
diff --git a/demux/ebml.c b/demux/ebml.c
index 98f86ac742..977bff43ee 100644
--- a/demux/ebml.c
+++ b/demux/ebml.c
@@ -20,8 +20,6 @@
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "config.h"
-
#include <stdlib.h>
#include <stdbool.h>
#include <inttypes.h>
diff --git a/demux/packet.c b/demux/packet.c
index 467606050a..ed43729b87 100644
--- a/demux/packet.c
+++ b/demux/packet.c
@@ -23,8 +23,6 @@
#include <libavcodec/avcodec.h>
#include <libavutil/intreadwrite.h>
-#include "config.h"
-
#include "common/av_common.h"
#include "common/common.h"
#include "demux.h"