diff options
author | Zane van Iperen <zane@zanevaniperen.com> | 2021-12-02 01:41:55 +1000 |
---|---|---|
committer | Zane van Iperen <zane@zanevaniperen.com> | 2021-12-02 01:41:55 +1000 |
commit | 12f8293c025f0a6103f2d0a05b05bffa9f4ff434 (patch) | |
tree | ed86be122facc3a49c0dfeabb83c1f1f82a99bfe /libavformat/Makefile | |
parent | d1b47f3bfcc625ca1cae210fc198dcbd54381a88 (diff) | |
download | ffmpeg-12f8293c025f0a6103f2d0a05b05bffa9f4ff434.tar.gz |
avformat/scd: add demuxer
Adds demuxer for Square Enux SCD files.
Based off [1] and personal investigation.
This has only been tested against Drakengard 3 (PS3) *_SCD.XXX files
(big-endian). As it is highly likely that FFXIV (PC) files are little-endian,
this demuxer is marked as experimental until this can be confirmed.
[1]: http://ffxivexplorer.fragmenterworks.com/research/scd%20files.txt
Reviewed-by: Peter Ross <pross@xvid.org>
Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
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 a19d2e0c88..2b5caf9d33 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -501,6 +501,7 @@ OBJS-$(CONFIG_SBC_MUXER) += rawenc.o OBJS-$(CONFIG_SBG_DEMUXER) += sbgdec.o OBJS-$(CONFIG_SCC_DEMUXER) += sccdec.o subtitles.o OBJS-$(CONFIG_SCC_MUXER) += sccenc.o subtitles.o +OBJS-$(CONFIG_SCD_DEMUXER) += scd.o OBJS-$(CONFIG_SDP_DEMUXER) += rtsp.o OBJS-$(CONFIG_SDR2_DEMUXER) += sdr2.o OBJS-$(CONFIG_SDS_DEMUXER) += sdsdec.o |