summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Jägenstedt <philipj@opera.com>2010-07-08 16:11:12 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2010-07-16 17:40:45 +0200
commit72ca12e4c1393170ccdbe3113c4b75c7e0798a9d (patch)
treedec6a5c806d3420d70e597daf4a9b1c36f578ffb
parentf1ac770f1b1ee646f93d76bbc897f7b634923699 (diff)
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.
-rw-r--r--gst/typefind/gsttypefindfunctions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/typefind/gsttypefindfunctions.c b/gst/typefind/gsttypefindfunctions.c
index 07d8747ff..a95e8f61b 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 };