- 23 Aug, 2011 2 commits
-
-
Stefan Kost authored
-
Stefan Kost authored
-
- 21 Aug, 2011 1 commit
-
-
David Schleef authored
-
- 05 Jan, 2011 1 commit
-
-
David Schleef authored
Change the fixed allocation (!) to g_strdup_printf().
-
- 26 Dec, 2010 1 commit
-
-
Tim-Philipp Müller authored
This reverts commit 6aa8ca37. See http://article.gmane.org/gmane.comp.video.gstreamer.devel/32282
-
- 17 Dec, 2010 1 commit
-
-
Edward Hervey authored
Reported by enabling the --warn-all option of g-ir-scanner
-
- 07 Dec, 2010 1 commit
-
-
Tim-Philipp Müller authored
Many of these are superfluous, added for clarity.
-
- 03 Dec, 2010 4 commits
-
-
David Schleef authored
-
Stefan Kost authored
-
Edward Hervey authored
-
Stefan Kost authored
Save ~2000 malloc/memcpy/free pairs at startup by running to_lower in-place. Also skip the numbers as we can.
-
- 09 Sep, 2010 1 commit
-
-
Edward Hervey authored
-
- 06 Sep, 2010 1 commit
-
-
Stefan Kost authored
-
- 23 Aug, 2010 1 commit
-
-
Mark Nauwelaerts authored
-
- 26 Jun, 2010 1 commit
-
-
Tim-Philipp Müller authored
Since everything GstXML related has been deprecated, we can now skip the libxml includes from the public headers when GST_DISABLE_DEPRECATED is defined. See #463435.
-
- 25 Jun, 2010 1 commit
-
-
Sebastian Dröge authored
Pipeline serialisation to and from XML is horribly broken for all but the most simple use cases, and will likely never be fixed. Make sure everyone playing around with these tools is aware of this, to avoid frustration. See countless bug reports in bugzilla. Fixes bug #622685.
-
- 22 Jun, 2010 1 commit
-
-
Tim-Philipp Müller authored
The name prefix stuff has never been used for anything and it doesn't look like we'll ever want to use it for anything. Fixes #621006.
-
- 05 Jun, 2010 1 commit
-
-
Tim-Philipp Müller authored
This makes it possible to easily get a *:5 debug log without all the refcounting noise, and drastically reduces the number of lines output for a normal log (46m to 28m for a 20min video). The full log including refcounting information can still be gotten using *:7. Fixes #620460.
-
- 28 Mar, 2010 1 commit
-
-
Sebastian Dröge authored
-
- 11 Mar, 2010 1 commit
-
-
Edward Hervey authored
G_PARAM_SPEC_VALUE_TYPE does an expensive type check, whereas the value_type field is a public field, so we can just use it directly.
-
- 10 Mar, 2010 2 commits
-
-
Benjamin Otte authored
This changes some APIs in compatible ways: - Some functions now take "const char *" arguments, not "char *" - Some structs now have "conts char *" members, not "char *" The changes may cause warnings when compiling with the right warning flags. You've been warned. Also adds -Wwrite-strings as a warning flag in configure.ac. https://bugzilla.gnome.org/show_bug.cgi?id=611692
-
Benjamin Otte authored
Adds that warning to configure.ac Includes a tiny change of the GST_BOILERPLATE_FULL() macro: The get_type() function is no longer declared before being defined. https://bugzilla.gnome.org/show_bug.cgi?id=611692
-
- 24 Dec, 2009 1 commit
-
-
Wim Taymans authored
-
- 14 Dec, 2009 2 commits
-
-
Stefan Kost authored
-
Stefan Kost authored
-
- 07 Dec, 2009 1 commit
-
-
Edward Hervey authored
Instead of chaining up to gst_object_set_name (which does typechecking and strdup's the name again), just use the already allocated new name.
-
- 28 Oct, 2009 2 commits
-
-
Edward Hervey authored
This avoids: * triple-checking for the GType when type-checking is enabled (see #597260) * Avoids going through an expensive no-argument checking which landed in glib-2.22 * Avoids going through 2 extrac functions (g_object_new -> g_object_new_valist)
-
Tim-Philipp Müller authored
There's not much point in using GST_DEBUG_FUNCPTR with GObject virtual functions such as get_property, set_propery, finalize and dispose, since they'll never be used by anyone anyway. Saves a few bytes and possibly a tenth of a polar bear.
-
- 14 Oct, 2009 1 commit
-
-
Sebastian Dröge authored
This is slightly more efficient because the compiler can't do tail recursion here and has to keep all stack frames. Not that efficiency is that important here but I already had the iterative version somewhere else and both are easy to read.
-
- 08 Oct, 2009 1 commit
-
-
Edward Hervey authored
object is no longer used after that line
-
- 23 Jun, 2009 1 commit
-
-
Wim Taymans authored
Add the object pointers in the debug info for _replace.
-
- 11 May, 2009 3 commits
-
-
Wim Taymans authored
-
Wim Taymans authored
Add the gst_object_ref_sink() method to match the glib one. API: GstObject::gst_object_ref_sink()
-
Wim Taymans authored
-
- 04 Apr, 2009 1 commit
-
-
Sebastian Dröge authored
-
- 03 Apr, 2009 1 commit
-
-
Edward Hervey authored
-
- 10 Mar, 2009 1 commit
-
-
Stefan Kost authored
-
- 03 Jan, 2009 1 commit
-
-
Edward Hervey authored
gst/: Assign debug statements to relevant categories instead of the 'default' category so they don't get lost in debu... Original commit message from CVS: * gst/gstelement.c: (gst_element_message_full), (gst_element_pads_activate): * gst/gstobject.c: (gst_object_dispatch_properties_changed): * gst/gstutils.c: (gst_pad_proxy_getcaps), (gst_pad_proxy_setcaps), (gst_pad_add_data_probe_full), (gst_pad_add_event_probe_full), (gst_pad_add_buffer_probe_full), (gst_pad_remove_data_probe), (gst_pad_remove_event_probe), (gst_pad_remove_buffer_probe): Assign debug statements to relevant categories instead of the 'default' category so they don't get lost in debugging.
-
- 19 Nov, 2008 1 commit
-
-
Andrew Feren authored
Original commit message from CVS: Patch by: Andrew Feren <acferen at yahoo dot com> * gst/gstobject.c: (gst_object_default_deep_notify): Unref the GEnumClass after usage again. Fixes bug #561501.
-
- 06 Nov, 2008 1 commit
-
-
Wim Taymans authored
Original commit message from CVS: * gst/gstcaps.c: (gst_caps_copy), (_gst_caps_free), (gst_caps_merge_structure), (gst_caps_get_structure), (gst_caps_copy_nth), (gst_caps_set_simple), (gst_caps_set_simple_valist), (gst_caps_is_fixed), (gst_caps_is_equal_fixed), (gst_caps_intersect), (gst_caps_subtract), (gst_caps_normalize), (gst_caps_do_simplify), (gst_caps_to_string): Callgrind micro optimisations. Avoid array bounds checks and force inline of trivial function. * gst/gstobject.c: (gst_object_set_name_default): -1 is equivalent to letting glib to the strlen but then there is more room for optimisations and it's not our fault. * gst/gststructure.c: (gst_structure_id_empty_new_with_size): no need to clear the array, we're cool. * gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed): The most common _is_fixed() check is done on fundamental glib base types so we check this first instead of doing a huge amount of useless GST_TYPE_ARRAY calls.
-