mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
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:
parent
f1ac770f1b
commit
72ca12e4c1
1 changed files with 1 additions and 1 deletions
|
@ -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 };
|
||||
|
|
Loading…
Reference in a new issue