Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRostislav Pehlivanov <atomnuker@gmail.com>2017-05-08 07:00:41 +0300
committerRostislav Pehlivanov <atomnuker@gmail.com>2017-05-16 13:27:00 +0300
commitf68ea92833474d7f0e493c6009eb533cb9c8bc90 (patch)
treeb71aafdbc8938cedeec7739e57da1a3b39671e1f /libavformat/img2dec.c
parenta13eac5a9959cb14b780b0938f56b627237f3d19 (diff)
img2dec: add support for piped SVG demuxing
Only checks the extension and MIME type, since determining whether a file is SVG is difficult since they're just XML files. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'libavformat/img2dec.c')
-rw-r--r--libavformat/img2dec.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/libavformat/img2dec.c b/libavformat/img2dec.c
index b454071168..1d532e9343 100644
--- a/libavformat/img2dec.c
+++ b/libavformat/img2dec.c
@@ -971,6 +971,26 @@ AVInputFormat ff_image_ ## imgname ## _pipe_demuxer = {\
.raw_codec_id = codecid,\
};
+static const AVClass svg_class = {
+ .class_name = "svg demuxer",
+ .item_name = av_default_item_name,
+ .option = ff_img_options,
+ .version = LIBAVUTIL_VERSION_INT,
+};
+
+AVInputFormat ff_image_svg_pipe_demuxer = {
+ .name = "svg_pipe",
+ .long_name = NULL_IF_CONFIG_SMALL("piped svg sequence"),
+ .priv_data_size = sizeof(VideoDemuxData),
+ .read_header = ff_img_read_header,
+ .read_packet = ff_img_read_packet,
+ .priv_class = &svg_class,
+ .mime_type = "image/svg+xml",
+ .extensions = "svg,svgz",
+ .flags = AVFMT_GENERIC_INDEX,
+ .raw_codec_id = AV_CODEC_ID_SVG,
+};
+
IMAGEAUTO_DEMUXER(bmp, AV_CODEC_ID_BMP)
IMAGEAUTO_DEMUXER(dds, AV_CODEC_ID_DDS)
IMAGEAUTO_DEMUXER(dpx, AV_CODEC_ID_DPX)