ext/wavpack/gstwavpackparse.c: Always use GSlice as we actually depend on GLib 2.12 already.

Original commit message from CVS:
* ext/wavpack/gstwavpackparse.c:
(gst_wavpack_parse_index_entry_free):
Always use GSlice as we actually depend on GLib 2.12 already.
This commit is contained in:
Sebastian Dröge 2008-04-04 19:00:19 +00:00
parent 777476da05
commit 5a7677ab24
2 changed files with 6 additions and 15 deletions

View file

@ -1,3 +1,9 @@
2008-04-04 Sebastian Dröge <slomo@circular-chaos.org>
* ext/wavpack/gstwavpackparse.c:
(gst_wavpack_parse_index_entry_free):
Always use GSlice as we actually depend on GLib 2.12 already.
2008-04-04 Tim-Philipp Müller <tim at centricular dot net>
* configure.ac:

View file

@ -57,8 +57,6 @@
GST_DEBUG_CATEGORY_STATIC (gst_wavpack_parse_debug);
#define GST_CAT_DEFAULT gst_wavpack_parse_debug
/* FIXME: unconditionally use GSlice after we depend on GLib >= 2.10 */
#if GLIB_CHECK_VERSION (2, 10, 0)
static inline GstWavpackParseIndexEntry *
gst_wavpack_parse_index_entry_new ()
{
@ -70,19 +68,6 @@ gst_wavpack_parse_index_entry_free (GstWavpackParseIndexEntry * entry)
{
g_slice_free (GstWavpackParseIndexEntry, entry);
}
#else
static inline GstWavpackParseIndexEntry *
gst_wavpack_parse_index_entry_new ()
{
return g_new (GstWavpackParseIndexEntry, 1);
}
static inline void
gst_wavpack_parse_index_entry_free (GstWavpackParseIndexEntry * entry)
{
g_free (entry);
}
#endif
static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
GST_PAD_SINK,