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.
This commit is contained in:
Philip Jägenstedt 2010-07-08 16:11:12 +02:00 committed by Sebastian Dröge
parent f1ac770f1b
commit 72ca12e4c1

View file

@ -3905,7 +3905,7 @@ plugin_init (GstPlugin * plugin)
static const gchar *bmp_exts[] = { "bmp", NULL }; static const gchar *bmp_exts[] = { "bmp", NULL };
static const gchar *tiff_exts[] = { "tif", "tiff", NULL }; static const gchar *tiff_exts[] = { "tif", "tiff", NULL };
static const gchar *matroska_exts[] = { "mkv", "mka", 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 *mve_exts[] = { "mve", NULL };
static const gchar *dv_exts[] = { "dv", "dif", NULL }; static const gchar *dv_exts[] = { "dv", "dif", NULL };
static const gchar *amr_exts[] = { "amr", NULL }; static const gchar *amr_exts[] = { "amr", NULL };