mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
gst/gstmodule.c: Wrap the gstreamer error domains quark.
Original commit message from CVS: * gst/gstmodule.c: (init_gst): Wrap the gstreamer error domains quark. Fixes #339040
This commit is contained in:
parent
06033e6279
commit
726357893f
2 changed files with 12 additions and 1 deletions
|
@ -1,6 +1,12 @@
|
|||
2006-04-28 Edward Hervey <edward@fluendo.com>
|
||||
|
||||
* gst/gstmodule.c: (init_gst):
|
||||
Wrap the gstreamer error domains quark.
|
||||
Fixes #339040
|
||||
|
||||
2006-04-19 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
* gst/gstpad.override (pad_block_callback_marshal)
|
||||
* gst/gstpad.override: (pad_block_callback_marshal)
|
||||
(_wrap_gst_pad_set_blocked_async): Fix refcounting problems and
|
||||
indent.
|
||||
Fixes #338982
|
||||
|
|
|
@ -236,6 +236,11 @@ init_gst (void)
|
|||
PyModule_AddStringConstant (m, "TAG_ALBUM_PEAK", GST_TAG_ALBUM_PEAK);
|
||||
PyModule_AddStringConstant (m, "TAG_LANGUAGE_CODE", GST_TAG_LANGUAGE_CODE);
|
||||
|
||||
PyModule_AddStringConstant (m, "LIBRARY_ERROR", (gchar *) g_quark_to_string(GST_LIBRARY_ERROR));
|
||||
PyModule_AddStringConstant (m, "RESOURCE_ERROR",(gchar *) g_quark_to_string(GST_RESOURCE_ERROR));
|
||||
PyModule_AddStringConstant (m, "CORE_ERROR", (gchar *) g_quark_to_string(GST_CORE_ERROR));
|
||||
PyModule_AddStringConstant (m, "STREAM_ERROR", (gchar *) g_quark_to_string(GST_STREAM_ERROR));
|
||||
|
||||
g_timeout_add_full (0, 100, python_do_pending_calls, NULL, NULL);
|
||||
|
||||
atexit(gst_deinit);
|
||||
|
|
Loading…
Reference in a new issue