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>
* docs/gst/.cvsignore:

View file

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

View file

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

View file

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

View 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
};

View 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
};

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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