gst/: don't use memchunks for these objects, use malloc instead
authorBenjamin Otte <otte@gnome.org>
Fri, 9 Apr 2004 19:05:03 +0000 (19:05 +0000)
committerBenjamin Otte <otte@gnome.org>
Fri, 9 Apr 2004 19:05:03 +0000 (19:05 +0000)
Original commit message from CVS:
* gst/gstbin.c: (gst_bin_get_type):
* gst/gstclock.c: (gst_clock_get_type):
* gst/gstindex.c: (gst_index_get_type):
* gst/gstobject.c: (gst_object_get_type),
(gst_signal_object_get_type):
* gst/gstpad.c: (gst_pad_get_type), (gst_real_pad_get_type),
(gst_pad_template_get_type), (gst_ghost_pad_get_type):
* gst/gstpluginfeature.c: (gst_plugin_feature_get_type):
* gst/gstqueue.c: (gst_queue_get_type):
* gst/gstregistry.c: (gst_registry_get_type):
* gst/gstsystemclock.c: (gst_system_clock_get_type):
* gst/gstthread.c: (gst_thread_get_type):
don't use memchunks for these objects, use malloc instead

12 files changed:
ChangeLog
gst/gstbin.c
gst/gstclock.c
gst/gstindex.c
gst/gstobject.c
gst/gstpad.c
gst/gstpluginfeature.c
gst/gstqueue.c
gst/gstregistry.c
gst/gstsystemclock.c
gst/gstthread.c
plugins/elements/gstqueue.c

index aa96741..90616d5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,19 @@
+2004-04-09  Benjamin Otte  <otte@gnome.org>
+
+       * gst/gstbin.c: (gst_bin_get_type):
+       * gst/gstclock.c: (gst_clock_get_type):
+       * gst/gstindex.c: (gst_index_get_type):
+       * gst/gstobject.c: (gst_object_get_type),
+       (gst_signal_object_get_type):
+       * gst/gstpad.c: (gst_pad_get_type), (gst_real_pad_get_type),
+       (gst_pad_template_get_type), (gst_ghost_pad_get_type):
+       * gst/gstpluginfeature.c: (gst_plugin_feature_get_type):
+       * gst/gstqueue.c: (gst_queue_get_type):
+       * gst/gstregistry.c: (gst_registry_get_type):
+       * gst/gstsystemclock.c: (gst_system_clock_get_type):
+       * gst/gstthread.c: (gst_thread_get_type):
+         don't use memchunks for these objects, use malloc instead
+
 2004-04-08  Thomas Vander Stichele  <thomas at apestaart dot org>
 
        * docs/gst/.cvsignore:
index 6662022..6a996b9 100644 (file)
@@ -106,7 +106,7 @@ gst_bin_get_type (void)
       NULL,
       NULL,
       sizeof (GstBin),
-      8,
+      0,
       (GInstanceInitFunc) gst_bin_init,
       NULL
     };
index 1d94334..2c604f4 100644 (file)
@@ -342,7 +342,7 @@ gst_clock_get_type (void)
       NULL,
       NULL,
       sizeof (GstClock),
-      4,
+      0,
       (GInstanceInitFunc) gst_clock_init,
       NULL
     };
index ac17fa1..bc1a69e 100644 (file)
@@ -125,7 +125,7 @@ gst_index_get_type (void)
       NULL,
       NULL,
       sizeof (GstIndex),
-      1,
+      0,
       (GInstanceInitFunc) gst_index_init,
       NULL
     };
index 894c551..f75fb0a 100644 (file)
@@ -109,7 +109,7 @@ gst_object_get_type (void)
       NULL,
       NULL,
       sizeof (GstObject),
-      32,
+      0,
       (GInstanceInitFunc) gst_object_init,
       NULL
     };
@@ -803,7 +803,7 @@ gst_signal_object_get_type (void)
       NULL,
       NULL,
       sizeof (GstSignalObject),
-      16,
+      0,
       (GInstanceInitFunc) gst_signal_object_init,
       NULL
     };
index 5b2ca9b..bb5ef99 100644 (file)
@@ -74,7 +74,7 @@ gst_pad_get_type (void)
       sizeof (GstPadClass), NULL, NULL,
       (GClassInitFunc) gst_pad_class_init, NULL, NULL,
       sizeof (GstPad),
-      32,
+      0,
       (GInstanceInitFunc) gst_pad_init, NULL
     };
 
@@ -156,7 +156,7 @@ gst_real_pad_get_type (void)
       sizeof (GstRealPadClass), NULL, NULL,
       (GClassInitFunc) gst_real_pad_class_init, NULL, NULL,
       sizeof (GstRealPad),
-      32,
+      0,
       (GInstanceInitFunc) gst_real_pad_init, NULL
     };
 
@@ -3327,7 +3327,7 @@ gst_pad_template_get_type (void)
       sizeof (GstPadTemplateClass), NULL, NULL,
       (GClassInitFunc) gst_pad_template_class_init, NULL, NULL,
       sizeof (GstPadTemplate),
-      32,
+      0,
       (GInstanceInitFunc) gst_pad_template_init, NULL
     };
 
@@ -3566,7 +3566,7 @@ gst_ghost_pad_get_type (void)
       sizeof (GstGhostPadClass), NULL, NULL,
       (GClassInitFunc) gst_ghost_pad_class_init, NULL, NULL,
       sizeof (GstGhostPad),
-      8,
+      0,
       (GInstanceInitFunc) gst_ghost_pad_init,
       NULL
     };
index a8f73df..2c90689 100644 (file)
@@ -50,7 +50,7 @@ gst_plugin_feature_get_type (void)
       NULL,
       NULL,
       sizeof (GObject),
-      32,
+      0,
       (GInstanceInitFunc) gst_plugin_feature_init,
       NULL
     };
index bd3adc8..b86b517 100644 (file)
@@ -131,7 +131,7 @@ gst_queue_get_type (void)
       NULL,
       NULL,
       sizeof (GstQueue),
-      4,
+      0,
       (GInstanceInitFunc) gst_queue_init,
       NULL
     };
index 329f442..06de568 100644 (file)
@@ -63,7 +63,7 @@ gst_registry_get_type (void)
       NULL,
       NULL,
       sizeof (GstRegistry),
-      32,
+      0,
       (GInstanceInitFunc) gst_registry_init,
       NULL
     };
index a474898..9966a58 100644 (file)
@@ -59,7 +59,7 @@ gst_system_clock_get_type (void)
       NULL,
       NULL,
       sizeof (GstSystemClock),
-      4,
+      0,
       (GInstanceInitFunc) gst_system_clock_init,
       NULL
     };
index d70910c..c6f2bfa 100644 (file)
@@ -124,7 +124,7 @@ gst_thread_get_type (void)
       NULL,
       NULL,
       sizeof (GstThread),
-      4,
+      0,
       gst_thread_init,
       NULL
     };
index bd3adc8..b86b517 100644 (file)
@@ -131,7 +131,7 @@ gst_queue_get_type (void)
       NULL,
       NULL,
       sizeof (GstQueue),
-      4,
+      0,
       (GInstanceInitFunc) gst_queue_init,
       NULL
     };