mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
fix non-gtk-doc comment blocks
Original commit message from CVS: fix non-gtk-doc comment blocks
This commit is contained in:
parent
dfedf4271f
commit
47274a1abe
4 changed files with 13 additions and 6 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2003-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* gst/gstplugin.c:
|
||||||
|
* gst/gstversion.h.in:
|
||||||
|
* gst/parse/grammar.y:
|
||||||
|
change comment block from /** to /* when not gtk-doc comments
|
||||||
|
|
||||||
2003-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
|
2003-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* gst/gst.c: whitespace and doc style fixes
|
* gst/gst.c: whitespace and doc style fixes
|
||||||
|
|
|
@ -205,7 +205,7 @@ gst_plugin_register_func (GstPlugin *plugin, GModule *module, GstPluginDesc *des
|
||||||
return plugin;
|
return plugin;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* _gst_plugin_fault_handler_restore:
|
* _gst_plugin_fault_handler_restore:
|
||||||
* segfault handler restorer
|
* segfault handler restorer
|
||||||
*/
|
*/
|
||||||
|
@ -220,7 +220,7 @@ _gst_plugin_fault_handler_restore (void)
|
||||||
sigaction (SIGSEGV, &action, NULL);
|
sigaction (SIGSEGV, &action, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* _gst_plugin_fault_handler_sighandler:
|
* _gst_plugin_fault_handler_sighandler:
|
||||||
* segfault handler implementation
|
* segfault handler implementation
|
||||||
*/
|
*/
|
||||||
|
@ -247,7 +247,7 @@ _gst_plugin_fault_handler_sighandler (int signum)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* _gst_plugin_fault_handler_setup:
|
* _gst_plugin_fault_handler_setup:
|
||||||
* sets up the segfault handler
|
* sets up the segfault handler
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -24,10 +24,10 @@
|
||||||
#ifndef __GST_VERSION_H__
|
#ifndef __GST_VERSION_H__
|
||||||
#define __GST_VERSION_H__
|
#define __GST_VERSION_H__
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* Use these only when you want to know what GStreamer version your stuff was
|
* Use these only when you want to know what GStreamer version your stuff was
|
||||||
* compiled against.
|
* compiled against.
|
||||||
* Use the #gst_version function if you want to know which versiuon of
|
* Use the #gst_version function if you want to know which version of
|
||||||
* GStreamer you are currently linked against.
|
* GStreamer you are currently linked against.
|
||||||
*/
|
*/
|
||||||
#define GST_VERSION_MAJOR (@GST_VERSION_MAJOR@)
|
#define GST_VERSION_MAJOR (@GST_VERSION_MAJOR@)
|
||||||
|
|
|
@ -436,7 +436,7 @@ gst_parse_perform_delayed_link (GstElement *src, const gchar *src_pad,
|
||||||
}
|
}
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
/**
|
/*
|
||||||
* performs a link and frees the struct. src and sink elements must be given
|
* performs a link and frees the struct. src and sink elements must be given
|
||||||
* return values 0 - link performed
|
* return values 0 - link performed
|
||||||
* 1 - link delayed
|
* 1 - link delayed
|
||||||
|
|
Loading…
Reference in a new issue