summaryrefslogtreecommitdiff
path: root/libavformat/Makefile
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-27 09:24:10 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-17 14:42:17 +0200
commitbde2cdfe9b570fdff2e741d68758e23271b9527c (patch)
tree22953ac8c78398cffb6bcd0bde4873cca640bbe3 /libavformat/Makefile
parentcf7c51f24ba5ea7196e89a205c1860048e2226b5 (diff)
avformat/utils: Move demuxing code out into a new file
libavformat/utils.c has over 4800 lines and is supposed to contain "various utility functions for use within FFmpeg". In reality it contains all that and the whole demuxing core of libavformat. This is especially bad, because said file includes the FFMPEG_VERSION (the git commit sha) so that it is rebuilt whenever the commit HEAD points to changes. Therefore this commit makes it smaller by moving the demuxing code out to a new file, demux.c (in analogy to mux.c for the muxing code). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r--libavformat/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile
index f67d261402..c45caa3eed 100644
--- a/libavformat/Makefile
+++ b/libavformat/Makefile
@@ -8,6 +8,7 @@ HEADERS = avformat.h \
OBJS = allformats.o \
avio.o \
aviobuf.o \
+ demux.o \
dump.o \
format.o \
id3v1.o \