diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2017-05-22 01:09:21 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2017-05-22 01:09:21 +0200 |
commit | 7f60dc03a0b88de78298bb57834d9fbc68926b64 (patch) | |
tree | b34ac3710ee55ec108b6b6a07f188e7e89f0da3b /libavformat/img2.c | |
parent | 017a68e8fb8b146eda89b7678e754c4bdaba6f10 (diff) | |
download | ffmpeg-7f60dc03a0b88de78298bb57834d9fbc68926b64.tar.gz |
lavf/img2: Add svg and svgz to allow reading image sequences.
Increase the return value for svg_probe() to make it != AVPROBE_SCORE_EXTENSION.
Diffstat (limited to 'libavformat/img2.c')
-rw-r--r-- | libavformat/img2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/img2.c b/libavformat/img2.c index 29df4f04e2..8432cc0955 100644 --- a/libavformat/img2.c +++ b/libavformat/img2.c @@ -65,6 +65,8 @@ const IdStrMap ff_img_tags[] = { { AV_CODEC_ID_SUNRAST, "im24" }, { AV_CODEC_ID_SUNRAST, "im32" }, { AV_CODEC_ID_SUNRAST, "sunras" }, + { AV_CODEC_ID_SVG, "svg" }, + { AV_CODEC_ID_SVG, "svgz" }, { AV_CODEC_ID_JPEG2000, "j2c" }, { AV_CODEC_ID_JPEG2000, "jp2" }, { AV_CODEC_ID_JPEG2000, "jpc" }, |