Commit 13aa51f8 authored by Jean-Paul Saman's avatar Jean-Paul Saman Committed by Jean-Paul Saman

src/misc/image.c: recognize SVG images on mime-type and extension.

parent 27499959
......@@ -554,6 +554,7 @@ static const struct
{ VLC_FOURCC('x','c','f',' '), "xcf" },
{ VLC_CODEC_PCX, "pcx" },
{ VLC_CODEC_GIF, "gif" },
{ VLC_CODEC_SVG, "svg" },
{ VLC_CODEC_TIFF, "tif" },
{ VLC_CODEC_TIFF, "tiff" },
{ VLC_FOURCC('l','b','m',' '), "lbm" },
......@@ -607,6 +608,7 @@ static const struct
{ VLC_CODEC_JPEG, "image/jpeg" },
{ VLC_CODEC_PCX, "image/pcx" },
{ VLC_CODEC_PNG, "image/png" },
{ VLC_CODEC_SVG, "image/svg+xml" },
{ VLC_CODEC_TIFF, "image/tiff" },
{ VLC_CODEC_TARGA, "image/x-tga" },
{ VLC_FOURCC('x','p','m',' '), "image/x-xpixmap" },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment