From: Antoine Cellerier Date: Tue, 6 Jan 2009 21:42:38 +0000 (+0100) Subject: Add image types. X-Git-Tag: 1.0.0-pre1~1294 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=74d68fbd7adce457a52d7cbd08a83d438e7b9b54;p=vlc Add image types. --- diff --git a/src/input/demux.c b/src/input/demux.c index dfbcb62a5a..16440c4642 100644 --- a/src/input/demux.c +++ b/src/input/demux.c @@ -112,6 +112,26 @@ demux_t *__demux_New( vlc_object_t *p_obj, { "h264", "h264" }, { "voc", "voc" }, { "mid", "smf" }, { "rmi", "smf" }, + + { "jpeg", "image" }, + { "jpg", "image" }, + { "ljpg", "image" }, + { "png", "image" }, + { "pgm", "image" }, + { "pgmyuv", "image" }, + { "pbm", "image" }, + { "pam", "image" }, + { "tga", "image" }, + { "bmp", "image" }, + { "pnm", "image" }, + { "xpm", "image" }, + { "xcf", "image" }, + { "pcx", "image" }, + { "gif", "image" }, + { "tif", "image" }, + { "tiff", "image" }, + { "lbm", "image" }, + { "", "" }, }; /* Here, we don't mind if it does not work, it must be quick */