summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdgard Lima <edgard.lima@indt.org.br>2005-12-21 20:59:52 +0000
committerEdgard Lima <edgard.lima@indt.org.br>2005-12-21 20:59:52 +0000
commita2eab82164004fcf4a17c963ee45b6a0ad323bcf (patch)
tree3ccf480c71234cb398e84b8c4ca42e1753859637
parent751b91e26cfedad95130722832e7fcd8a367eebf (diff)
iLBC30 and iLBC20 added to typefind.
Original commit message from CVS: iLBC30 and iLBC20 added to typefind.
-rw-r--r--ChangeLog5
-rw-r--r--gst/typefind/gsttypefindfunctions.c5
2 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 2c1df4568..0a6e217f2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-21 Edgard Lima <edgard.lima@indt.org.br>
+
+ * gst/typefind/gsttypefindfunctions.c:
+ iLBC30 and iLBC20 added to typefind.
+
2005-12-20 Thomas Vander Stichele <thomas at apestaart dot org>
* gst-libs/gst/audio/gstbaseaudiosink.c:
diff --git a/gst/typefind/gsttypefindfunctions.c b/gst/typefind/gsttypefindfunctions.c
index cacc98218..5f710819c 100644
--- a/gst/typefind/gsttypefindfunctions.c
+++ b/gst/typefind/gsttypefindfunctions.c
@@ -1898,6 +1898,7 @@ plugin_init (GstPlugin * plugin)
static gchar *matroska_exts[] = { "mkv", "mka", NULL };
static gchar *dv_exts[] = { "dv", "dif", NULL };
static gchar *amr_exts[] = { "amr", NULL };
+ static gchar *ilbc_exts[] = { "ilbc", NULL };
static gchar *sid_exts[] = { "sid", NULL };
static gchar *xcf_exts[] = { "xcf", NULL };
static gchar *mng_exts[] = { "mng", NULL };
@@ -2026,6 +2027,10 @@ plugin_init (GstPlugin * plugin)
amr_exts, "#!AMR", 5, GST_TYPE_FIND_LIKELY);
TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-amr-wb-sh", GST_RANK_PRIMARY,
amr_exts, "#!AMR-WB", 7, GST_TYPE_FIND_MAXIMUM);
+ TYPE_FIND_REGISTER_START_WITH (plugin, "audio/iLBC-sh", GST_RANK_PRIMARY,
+ ilbc_exts, "#!iLBC30", 8, GST_TYPE_FIND_LIKELY);
+ TYPE_FIND_REGISTER_START_WITH (plugin, "audio/iLBC-sh", GST_RANK_PRIMARY,
+ ilbc_exts, "#!iLBC20", 8, GST_TYPE_FIND_LIKELY);
TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-sid", GST_RANK_MARGINAL,
sid_exts, "PSID", 4, GST_TYPE_FIND_MAXIMUM);
TYPE_FIND_REGISTER_START_WITH (plugin, "image/x-xcf", GST_RANK_SECONDARY,