gst/: don't use memchunks for these objects, use malloc instead

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
This commit is contained in:
Benjamin Otte 2004-04-09 19:05:03 +00:00
parent 787e8d78cd
commit 3147797afb
12 changed files with 31 additions and 15 deletions

View file

@ -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> 2004-04-08 Thomas Vander Stichele <thomas at apestaart dot org>
* docs/gst/.cvsignore: * docs/gst/.cvsignore:

View file

@ -106,7 +106,7 @@ gst_bin_get_type (void)
NULL, NULL,
NULL, NULL,
sizeof (GstBin), sizeof (GstBin),
8, 0,
(GInstanceInitFunc) gst_bin_init, (GInstanceInitFunc) gst_bin_init,
NULL NULL
}; };

View file

@ -342,7 +342,7 @@ gst_clock_get_type (void)
NULL, NULL,
NULL, NULL,
sizeof (GstClock), sizeof (GstClock),
4, 0,
(GInstanceInitFunc) gst_clock_init, (GInstanceInitFunc) gst_clock_init,
NULL NULL
}; };

View file

@ -125,7 +125,7 @@ gst_index_get_type (void)
NULL, NULL,
NULL, NULL,
sizeof (GstIndex), sizeof (GstIndex),
1, 0,
(GInstanceInitFunc) gst_index_init, (GInstanceInitFunc) gst_index_init,
NULL NULL
}; };

View file

@ -109,7 +109,7 @@ gst_object_get_type (void)
NULL, NULL,
NULL, NULL,
sizeof (GstObject), sizeof (GstObject),
32, 0,
(GInstanceInitFunc) gst_object_init, (GInstanceInitFunc) gst_object_init,
NULL NULL
}; };
@ -803,7 +803,7 @@ gst_signal_object_get_type (void)
NULL, NULL,
NULL, NULL,
sizeof (GstSignalObject), sizeof (GstSignalObject),
16, 0,
(GInstanceInitFunc) gst_signal_object_init, (GInstanceInitFunc) gst_signal_object_init,
NULL NULL
}; };

View file

@ -74,7 +74,7 @@ gst_pad_get_type (void)
sizeof (GstPadClass), NULL, NULL, sizeof (GstPadClass), NULL, NULL,
(GClassInitFunc) gst_pad_class_init, NULL, NULL, (GClassInitFunc) gst_pad_class_init, NULL, NULL,
sizeof (GstPad), sizeof (GstPad),
32, 0,
(GInstanceInitFunc) gst_pad_init, NULL (GInstanceInitFunc) gst_pad_init, NULL
}; };
@ -156,7 +156,7 @@ gst_real_pad_get_type (void)
sizeof (GstRealPadClass), NULL, NULL, sizeof (GstRealPadClass), NULL, NULL,
(GClassInitFunc) gst_real_pad_class_init, NULL, NULL, (GClassInitFunc) gst_real_pad_class_init, NULL, NULL,
sizeof (GstRealPad), sizeof (GstRealPad),
32, 0,
(GInstanceInitFunc) gst_real_pad_init, NULL (GInstanceInitFunc) gst_real_pad_init, NULL
}; };
@ -3327,7 +3327,7 @@ gst_pad_template_get_type (void)
sizeof (GstPadTemplateClass), NULL, NULL, sizeof (GstPadTemplateClass), NULL, NULL,
(GClassInitFunc) gst_pad_template_class_init, NULL, NULL, (GClassInitFunc) gst_pad_template_class_init, NULL, NULL,
sizeof (GstPadTemplate), sizeof (GstPadTemplate),
32, 0,
(GInstanceInitFunc) gst_pad_template_init, NULL (GInstanceInitFunc) gst_pad_template_init, NULL
}; };
@ -3566,7 +3566,7 @@ gst_ghost_pad_get_type (void)
sizeof (GstGhostPadClass), NULL, NULL, sizeof (GstGhostPadClass), NULL, NULL,
(GClassInitFunc) gst_ghost_pad_class_init, NULL, NULL, (GClassInitFunc) gst_ghost_pad_class_init, NULL, NULL,
sizeof (GstGhostPad), sizeof (GstGhostPad),
8, 0,
(GInstanceInitFunc) gst_ghost_pad_init, (GInstanceInitFunc) gst_ghost_pad_init,
NULL NULL
}; };

View file

@ -50,7 +50,7 @@ gst_plugin_feature_get_type (void)
NULL, NULL,
NULL, NULL,
sizeof (GObject), sizeof (GObject),
32, 0,
(GInstanceInitFunc) gst_plugin_feature_init, (GInstanceInitFunc) gst_plugin_feature_init,
NULL NULL
}; };

View file

@ -131,7 +131,7 @@ gst_queue_get_type (void)
NULL, NULL,
NULL, NULL,
sizeof (GstQueue), sizeof (GstQueue),
4, 0,
(GInstanceInitFunc) gst_queue_init, (GInstanceInitFunc) gst_queue_init,
NULL NULL
}; };

View file

@ -63,7 +63,7 @@ gst_registry_get_type (void)
NULL, NULL,
NULL, NULL,
sizeof (GstRegistry), sizeof (GstRegistry),
32, 0,
(GInstanceInitFunc) gst_registry_init, (GInstanceInitFunc) gst_registry_init,
NULL NULL
}; };

View file

@ -59,7 +59,7 @@ gst_system_clock_get_type (void)
NULL, NULL,
NULL, NULL,
sizeof (GstSystemClock), sizeof (GstSystemClock),
4, 0,
(GInstanceInitFunc) gst_system_clock_init, (GInstanceInitFunc) gst_system_clock_init,
NULL NULL
}; };

View file

@ -124,7 +124,7 @@ gst_thread_get_type (void)
NULL, NULL,
NULL, NULL,
sizeof (GstThread), sizeof (GstThread),
4, 0,
gst_thread_init, gst_thread_init,
NULL NULL
}; };

View file

@ -131,7 +131,7 @@ gst_queue_get_type (void)
NULL, NULL,
NULL, NULL,
sizeof (GstQueue), sizeof (GstQueue),
4, 0,
(GInstanceInitFunc) gst_queue_init, (GInstanceInitFunc) gst_queue_init,
NULL NULL
}; };