diff options
author | Zane van Iperen <zane@zanevaniperen.com> | 2020-09-07 20:44:23 +1000 |
---|---|---|
committer | Zane van Iperen <zane@zanevaniperen.com> | 2020-09-14 14:38:45 +1000 |
commit | 119efa275ecbcaca96632b25a10df0b6c6ba42d2 (patch) | |
tree | f914fb512c9df3eb326ee5a3a243cc128e0765e9 /libavformat/Makefile | |
parent | 121016f8279fc3bce49f403e378418eaa167aae6 (diff) | |
download | ffmpeg-119efa275ecbcaca96632b25a10df0b6c6ba42d2.tar.gz |
avformat: add Argonaut Games BRP demuxer
Used in FMVs for FX Fighter and Croc. Supports BVID and BASF streams,
requests samples for anything else.
Due to the way BASF streams are contained in the file, only one is
supported. I have yet to see a BRP file with multiple.
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 5ce1e6464d..bbaf4de7ad 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -104,6 +104,7 @@ OBJS-$(CONFIG_APTX_HD_MUXER) += rawenc.o OBJS-$(CONFIG_AQTITLE_DEMUXER) += aqtitledec.o subtitles.o OBJS-$(CONFIG_ARGO_ASF_DEMUXER) += argo_asf.o OBJS-$(CONFIG_ARGO_ASF_MUXER) += argo_asf.o +OBJS-$(CONFIG_ARGO_BRP_DEMUXER) += argo_brp.o argo_asf.o OBJS-$(CONFIG_ASF_DEMUXER) += asfdec_f.o asf.o asfcrypt.o \ avlanguage.o OBJS-$(CONFIG_ASF_O_DEMUXER) += asfdec_o.o asf.o asfcrypt.o \ |