mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-06 16:19:59 +00:00
gst/gstregistrybinary.c: Don't bother with the GTimer if we don't output the results.
Original commit message from CVS: * gst/gstregistrybinary.c: Don't bother with the GTimer if we don't output the results.
This commit is contained in:
parent
6de992cf71
commit
1d61cb0381
2 changed files with 15 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-11-03 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/gstregistrybinary.c:
|
||||
Don't bother with the GTimer if we don't output the results.
|
||||
|
||||
2008-11-03 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
Patch by: David Schleef <ds@schleef.org>
|
||||
|
|
|
@ -1161,21 +1161,25 @@ gboolean
|
|||
gst_registry_binary_read_cache (GstRegistry * registry, const char *location)
|
||||
{
|
||||
GMappedFile *mapped = NULL;
|
||||
GTimer *timer = NULL;
|
||||
gchar *contents = NULL;
|
||||
gchar *in = NULL;
|
||||
gdouble seconds;
|
||||
gsize size;
|
||||
GError *err = NULL;
|
||||
gboolean res = FALSE;
|
||||
gint check_magic_result;
|
||||
#ifndef GST_DISABLE_GST_DEBUG
|
||||
GTimer *timer = NULL;
|
||||
gdouble seconds;
|
||||
#endif
|
||||
|
||||
/* make sure these types exist */
|
||||
GST_TYPE_ELEMENT_FACTORY;
|
||||
GST_TYPE_TYPE_FIND_FACTORY;
|
||||
GST_TYPE_INDEX_FACTORY;
|
||||
|
||||
#ifndef GST_DISABLE_GST_DEBUG
|
||||
timer = g_timer_new ();
|
||||
#endif
|
||||
|
||||
mapped = g_mapped_file_new (location, FALSE, &err);
|
||||
if (err != NULL) {
|
||||
|
@ -1235,8 +1239,10 @@ gst_registry_binary_read_cache (GstRegistry * registry, const char *location)
|
|||
}
|
||||
}
|
||||
|
||||
#ifndef GST_DISABLE_GST_DEBUG
|
||||
g_timer_stop (timer);
|
||||
seconds = g_timer_elapsed (timer, NULL);
|
||||
#endif
|
||||
|
||||
GST_INFO ("loaded %s in %lf seconds", location, seconds);
|
||||
|
||||
|
@ -1244,7 +1250,9 @@ gst_registry_binary_read_cache (GstRegistry * registry, const char *location)
|
|||
/* TODO: once we re-use the pointers to registry contents return here */
|
||||
|
||||
Error:
|
||||
#ifndef GST_DISABLE_GST_DEBUG
|
||||
g_timer_destroy (timer);
|
||||
#endif
|
||||
if (mapped) {
|
||||
g_mapped_file_free (mapped);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue