From dc9ec48574db9fc6558ffa4df3ac4969fa5f0107 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Loeuillet?= Date: Tue, 5 Oct 2004 13:07:08 +0000 Subject: [PATCH] - add .rmvb to the list of RealMedia known file extensions Original commit message from CVS: - add .rmvb to the list of RealMedia known file extensions --- ChangeLog | 5 +++++ gst/typefind/gsttypefindfunctions.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index f34fc8bcd1..3f16c25663 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-10-05 Stephane Loeuillet + + * gst/typefind/gsttypefindfunctions.c: (plugin_init): + Add rmvb to the list of known RealMedia extensions + 2004-10-05 Wim Taymans * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error), diff --git a/gst/typefind/gsttypefindfunctions.c b/gst/typefind/gsttypefindfunctions.c index 54bc909155..d2f6cafae4 100644 --- a/gst/typefind/gsttypefindfunctions.c +++ b/gst/typefind/gsttypefindfunctions.c @@ -1371,7 +1371,7 @@ plugin_init (GstPlugin * plugin) static gchar *mpeg_video_exts[] = { "mpv", "mpeg", "mpg", NULL }; static gchar *ogg_exts[] = { "ogg", "ogm", NULL }; static gchar *qt_exts[] = { "mov", NULL }; - static gchar *rm_exts[] = { "ra", "ram", "rm", NULL }; + static gchar *rm_exts[] = { "ra", "ram", "rm", "rmvb", NULL }; static gchar *swf_exts[] = { "swf", "swfl", NULL }; static gchar *utf8_exts[] = { "txt", NULL }; static gchar *wav_exts[] = { "wav", NULL }; @@ -1385,7 +1385,7 @@ plugin_init (GstPlugin * plugin) static gchar *bmp_exts[] = { "bmp", NULL }; static gchar *tiff_exts[] = { "tif", "tiff", NULL }; static gchar *matroska_exts[] = { "mkv", "mka", NULL }; - static gchar *dv_exts[] = { "dv", NULL }; + static gchar *dv_exts[] = { "dv", "dif", NULL }; static gchar *sid_exts[] = { "sid", NULL }; static gchar *xcf_exts[] = { "xcf", NULL }; static gchar *mng_exts[] = { "mng", NULL };