[vlc-devel] commit: Add image types. (Antoine Cellerier )
git version control
git at videolan.org
Sat Jan 17 16:09:48 CET 2009
vlc | branch: master | Antoine Cellerier <dionoea at videolan.org> | Tue Jan 6 22:42:38 2009 +0100| [74d68fbd7adce457a52d7cbd08a83d438e7b9b54] | committer: Antoine Cellerier
Add image types.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=74d68fbd7adce457a52d7cbd08a83d438e7b9b54
---
src/input/demux.c | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/src/input/demux.c b/src/input/demux.c
index dfbcb62..16440c4 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 */
More information about the vlc-devel
mailing list