mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 16:08:51 +00:00
fix GOption context leaks doc fixes
Original commit message from CVS: * docs/gst/gstreamer-sections.txt: * gst/gst.c: * gst/gsterror.h: * tools/gst-inspect.c: (main): * tools/gst-launch.c: (main): * tools/gst-run.c: (main): * tools/gst-xmlinspect.c: (main): fix GOption context leaks doc fixes
This commit is contained in:
parent
feeb5f939e
commit
2bc2709c85
8 changed files with 50 additions and 6 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
||||||
|
2005-10-13 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
|
* docs/gst/gstreamer-sections.txt:
|
||||||
|
* gst/gst.c:
|
||||||
|
* gst/gsterror.h:
|
||||||
|
* tools/gst-inspect.c: (main):
|
||||||
|
* tools/gst-launch.c: (main):
|
||||||
|
* tools/gst-run.c: (main):
|
||||||
|
* tools/gst-xmlinspect.c: (main):
|
||||||
|
fix GOption context leaks
|
||||||
|
doc fixes
|
||||||
|
|
||||||
2005-10-13 Thomas Vander Stichele <thomas at apestaart dot org>
|
2005-10-13 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* gst/gstbus.c:
|
* gst/gstbus.c:
|
||||||
|
|
|
@ -582,10 +582,6 @@ GST_RESOURCE_ERROR
|
||||||
GST_STREAM_ERROR
|
GST_STREAM_ERROR
|
||||||
GST_ERROR_SYSTEM
|
GST_ERROR_SYSTEM
|
||||||
gst_error_get_message
|
gst_error_get_message
|
||||||
gst_core_error_quark
|
|
||||||
gst_library_error_quark
|
|
||||||
gst_resource_error_quark
|
|
||||||
gst_stream_error_quark
|
|
||||||
<SUBSECTION Standard>
|
<SUBSECTION Standard>
|
||||||
GST_TYPE_G_ERROR
|
GST_TYPE_G_ERROR
|
||||||
GST_TYPE_CORE_ERROR
|
GST_TYPE_CORE_ERROR
|
||||||
|
@ -598,6 +594,10 @@ gst_core_error_get_type
|
||||||
gst_library_error_get_type
|
gst_library_error_get_type
|
||||||
gst_resource_error_get_type
|
gst_resource_error_get_type
|
||||||
gst_stream_error_get_type
|
gst_stream_error_get_type
|
||||||
|
gst_core_error_quark
|
||||||
|
gst_library_error_quark
|
||||||
|
gst_resource_error_quark
|
||||||
|
gst_stream_error_quark
|
||||||
</SECTION>
|
</SECTION>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -250,9 +250,9 @@ parse_debug_list (const gchar * list)
|
||||||
* and initialization is automated.
|
* and initialization is automated.
|
||||||
*
|
*
|
||||||
* This function is useful if you want to integrate GStreamer with other
|
* This function is useful if you want to integrate GStreamer with other
|
||||||
* libraries that use GOption.
|
* libraries that use GOption (see g_option_context_add_group() ).
|
||||||
*
|
*
|
||||||
* Returns: a pointer to a GStreamer option group. Should be dereferenced
|
* Returns: a pointer to GStreamer's option group. Should be dereferenced
|
||||||
* after use.
|
* after use.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -187,9 +187,37 @@ typedef enum
|
||||||
|
|
||||||
#define GST_TYPE_G_ERROR (gst_g_error_get_type ())
|
#define GST_TYPE_G_ERROR (gst_g_error_get_type ())
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GST_LIBRARY_ERROR:
|
||||||
|
*
|
||||||
|
* Error domain for library loading. Errors in this domain will
|
||||||
|
* be from the #GstLibraryError enumeration.
|
||||||
|
* See #GError for information on error domains.
|
||||||
|
*/
|
||||||
#define GST_LIBRARY_ERROR gst_library_error_quark ()
|
#define GST_LIBRARY_ERROR gst_library_error_quark ()
|
||||||
|
/**
|
||||||
|
* GST_RESOURCE_ERROR:
|
||||||
|
*
|
||||||
|
* Error domain for resource handling. Errors in this domain will
|
||||||
|
* be from the #GstResourceError enumeration.
|
||||||
|
* See #GError for information on error domains.
|
||||||
|
*/
|
||||||
#define GST_RESOURCE_ERROR gst_resource_error_quark ()
|
#define GST_RESOURCE_ERROR gst_resource_error_quark ()
|
||||||
|
/**
|
||||||
|
* GST_CORE_ERROR:
|
||||||
|
*
|
||||||
|
* Error domain for core system. Errors in this domain will
|
||||||
|
* be from the #GstCoreError enumeration.
|
||||||
|
* See #GError for information on error domains.
|
||||||
|
*/
|
||||||
#define GST_CORE_ERROR gst_core_error_quark ()
|
#define GST_CORE_ERROR gst_core_error_quark ()
|
||||||
|
/**
|
||||||
|
* GST_STREAM_ERROR:
|
||||||
|
*
|
||||||
|
* Error domain for media stream processing. Errors in this domain will
|
||||||
|
* be from the #GstStreamError enumeration.
|
||||||
|
* See #GError for information on error domains.
|
||||||
|
*/
|
||||||
#define GST_STREAM_ERROR gst_stream_error_quark ()
|
#define GST_STREAM_ERROR gst_stream_error_quark ()
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1117,6 +1117,7 @@ main (int argc, char *argv[])
|
||||||
g_print ("Error initializing: %s\n", err->message);
|
g_print ("Error initializing: %s\n", err->message);
|
||||||
exit (1);
|
exit (1);
|
||||||
}
|
}
|
||||||
|
g_option_context_free (ctx);
|
||||||
|
|
||||||
if (print_all && argc > 2) {
|
if (print_all && argc > 2) {
|
||||||
g_print ("-a requires no extra arguments\n");
|
g_print ("-a requires no extra arguments\n");
|
||||||
|
|
|
@ -533,6 +533,7 @@ main (int argc, char *argv[])
|
||||||
g_print ("Error initializing: %s\n", GST_STR_NULL (err->message));
|
g_print ("Error initializing: %s\n", GST_STR_NULL (err->message));
|
||||||
exit (1);
|
exit (1);
|
||||||
}
|
}
|
||||||
|
g_option_context_free (ctx);
|
||||||
|
|
||||||
/* FIXpopt: strip short args, too. We do it ourselves for now */
|
/* FIXpopt: strip short args, too. We do it ourselves for now */
|
||||||
j = 1;
|
j = 1;
|
||||||
|
|
|
@ -244,6 +244,7 @@ main (int argc, char **argv)
|
||||||
g_print ("Error initializing: %s\n", err->message);
|
g_print ("Error initializing: %s\n", err->message);
|
||||||
exit (1);
|
exit (1);
|
||||||
}
|
}
|
||||||
|
g_option_context_free (ctx);
|
||||||
|
|
||||||
/* detect stuff */
|
/* detect stuff */
|
||||||
dir = get_dir_of_binary (argv[0]);
|
dir = get_dir_of_binary (argv[0]);
|
||||||
|
|
|
@ -780,6 +780,7 @@ main (int argc, char *argv[])
|
||||||
g_print ("Error initializing: %s\n", err->message);
|
g_print ("Error initializing: %s\n", err->message);
|
||||||
exit (1);
|
exit (1);
|
||||||
}
|
}
|
||||||
|
g_option_context_free (ctx);
|
||||||
|
|
||||||
PUT_STRING (0, "<?xml version=\"1.0\"?>");
|
PUT_STRING (0, "<?xml version=\"1.0\"?>");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue