iLBC30 and iLBC20 added to typefind.
authorEdgard Lima <edgard.lima@indt.org.br>
Wed, 21 Dec 2005 20:59:52 +0000 (20:59 +0000)
committerEdgard Lima <edgard.lima@indt.org.br>
Wed, 21 Dec 2005 20:59:52 +0000 (20:59 +0000)
Original commit message from CVS:
iLBC30 and iLBC20 added to typefind.

ChangeLog
gst/typefind/gsttypefindfunctions.c

index 2c1df4568abe609a7e37bea286528bd8f5090413..0a6e217f2ea48af313c839db53f237258af3c3c1 100644 (file)
--- 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:
index cacc982187afed29acdb6dae13b02e987ca7e56e..5f710819cb78d39aa30b34fcbc68bd194963ff38 100644 (file)
@@ -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,