diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-08-03 14:08:44 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-08-08 16:20:58 +0200 |
commit | 7b6622705e552b1dd5284b743974b66abe04954b (patch) | |
tree | 92dc1a8fe1d2015071937a6357d141bdac761f8c /fftools/Makefile | |
parent | c3b8d59d2f40550369dbfb2505f2f8415f1e37ec (diff) | |
download | ffmpeg-7b6622705e552b1dd5284b743974b66abe04954b.tar.gz |
fftools/ffmpeg: move the input thread into its own file
It will contain more demuxing-specific code in the future.
Diffstat (limited to 'fftools/Makefile')
-rw-r--r-- | fftools/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fftools/Makefile b/fftools/Makefile index 6285e6eacb..5907f5c57e 100644 --- a/fftools/Makefile +++ b/fftools/Makefile @@ -10,6 +10,7 @@ ALLAVPROGS = $(AVBASENAMES:%=%$(PROGSSUF)$(EXESUF)) ALLAVPROGS_G = $(AVBASENAMES:%=%$(PROGSSUF)_g$(EXESUF)) OBJS-ffmpeg += \ + fftools/ffmpeg_demux.o \ fftools/ffmpeg_filter.o \ fftools/ffmpeg_hw.o \ fftools/ffmpeg_mux.o \ |