diff options
author | Zane van Iperen <zane@zanevaniperen.com> | 2020-01-26 03:36:54 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2020-01-26 10:24:00 +0100 |
commit | dc3aa376dcea2bf53e1188971eee10ca90764e99 (patch) | |
tree | c5b1208d3fb5bedd31a6ca87a82a8c9a96e1a5b3 /libavformat/allformats.c | |
parent | bf890ae0d7803492a729c2c8f2a5c907ade2a9f8 (diff) | |
download | ffmpeg-dc3aa376dcea2bf53e1188971eee10ca90764e99.tar.gz |
avformat: add demuxer for argonaut games' ASF format
Adds support for the custom ASF container used by some Argonaut Games'
games, such as 'Croc! Legend of the Gobbos', and 'Croc 2'.
Can also handle the sample files in:
https://samples.ffmpeg.org/game-formats/brender/part2.zip
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
Diffstat (limited to 'libavformat/allformats.c')
-rw-r--r-- | libavformat/allformats.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c index ff9bdb906f..fe74a32e47 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@ -60,6 +60,7 @@ extern AVOutputFormat ff_aptx_muxer; extern AVInputFormat ff_aptx_hd_demuxer; extern AVOutputFormat ff_aptx_hd_muxer; extern AVInputFormat ff_aqtitle_demuxer; +extern AVInputFormat ff_argo_asf_demuxer; extern AVInputFormat ff_asf_demuxer; extern AVOutputFormat ff_asf_muxer; extern AVInputFormat ff_asf_o_demuxer; |