From 72ca12e4c1393170ccdbe3113c4b75c7e0798a9d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Philip=20J=C3=A4genstedt?= Date: Thu, 8 Jul 2010 16:11:12 +0200 Subject: [PATCH] typefind: only associate .webm with WebM .weba (audio) and .webv (video) were speculation on my part before the public launch. As of yet no decision has been made on the file extension for audio-only WebM, and I'm pretty sure there will never be one for video-only. Fixes bug #623837. --- gst/typefind/gsttypefindfunctions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/typefind/gsttypefindfunctions.c b/gst/typefind/gsttypefindfunctions.c index 07d8747ffc..a95e8f61ba 100644 --- a/gst/typefind/gsttypefindfunctions.c +++ b/gst/typefind/gsttypefindfunctions.c @@ -3905,7 +3905,7 @@ plugin_init (GstPlugin * plugin) static const gchar *bmp_exts[] = { "bmp", NULL }; static const gchar *tiff_exts[] = { "tif", "tiff", NULL }; static const gchar *matroska_exts[] = { "mkv", "mka", NULL }; - static const gchar *webm_exts[] = { "webm", "weba", "webv", NULL }; + static const gchar *webm_exts[] = { "webm", NULL }; static const gchar *mve_exts[] = { "mve", NULL }; static const gchar *dv_exts[] = { "dv", "dif", NULL }; static const gchar *amr_exts[] = { "amr", NULL }; -- 2.34.1