summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2013-11-16 12:24:56 +0000
committerTim-Philipp Müller <tim@centricular.com>2013-11-16 16:09:40 +0000
commit9f669e5ea59433631e43f924d70c6001e1de3a07 (patch)
treec093b24751804d0dbc7e54619479980c43111947
parente24722c52c5840fdf9e5825ba624d2e0aa129494 (diff)
docs: cosmetic since marker fixes
-rw-r--r--gst/gstbin.h4
-rw-r--r--gst/gstbuffer.c2
-rw-r--r--gst/gstinfo.c2
-rw-r--r--gst/gstplugin.h4
-rw-r--r--gst/gstpluginfeature.c2
-rw-r--r--libs/gst/base/gstbasesink.c6
-rw-r--r--libs/gst/base/gstdataqueue.c24
-rw-r--r--libs/gst/base/gstqueuearray.c18
8 files changed, 31 insertions, 31 deletions
diff --git a/gst/gstbin.h b/gst/gstbin.h
index 17d144173e..33c8d98a5f 100644
--- a/gst/gstbin.h
+++ b/gst/gstbin.h
@@ -41,7 +41,7 @@ G_BEGIN_DECLS
/**
* GstBinFlags:
* @GST_BIN_FLAG_NO_RESYNC: don't resync a state change when elements are
- * added or linked in the bin.
+ * added or linked in the bin (Since 1.0.5)
* @GST_BIN_FLAG_LAST: the last enum in the series of flags for bins.
* Derived classes can use this as first value in a list of flags.
*
@@ -62,7 +62,7 @@ typedef enum {
* Check if @bin will resync its state change when elements are added and
* removed.
*
- * Since: 1.1.1
+ * Since: 1.0.5
*/
#define GST_BIN_IS_NO_RESYNC(bin) (GST_OBJECT_FLAG_IS_SET(bin,GST_BIN_FLAG_NO_RESYNC))
diff --git a/gst/gstbuffer.c b/gst/gstbuffer.c
index 406e90be01..de78b71809 100644
--- a/gst/gstbuffer.c
+++ b/gst/gstbuffer.c
@@ -341,7 +341,7 @@ _priv_gst_buffer_initialize (void)
*
* Returns: the maximum amount of memory blocks that a buffer can hold.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
guint
gst_buffer_get_max_memory (void)
diff --git a/gst/gstinfo.c b/gst/gstinfo.c
index 550121709e..c5a03d3d00 100644
--- a/gst/gstinfo.c
+++ b/gst/gstinfo.c
@@ -1759,7 +1759,7 @@ parse_debug_level (gchar * str, GstDebugLevel * level)
* the order matters when you use wild cards, e.g. "foosrc:6,*src:3,*:2" sets
* everything to log level 2.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
void
gst_debug_set_threshold_from_string (const gchar * list, gboolean reset)
diff --git a/gst/gstplugin.h b/gst/gstplugin.h
index 66ede1278d..4b816958fa 100644
--- a/gst/gstplugin.h
+++ b/gst/gstplugin.h
@@ -198,7 +198,7 @@ struct _GstPluginDesc {
* and must be placed outside any block to declare the plugin initialization
* function.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
#define GST_PLUGIN_STATIC_DECLARE(name) \
extern void G_PASTE(gst_plugin_, G_PASTE(name, _register)) (void)
@@ -212,7 +212,7 @@ struct _GstPluginDesc {
* It has to be used in combination with GST_PLUGIN_STATIC_DECLARE and
* calls the plugin initialization function.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
#define GST_PLUGIN_STATIC_REGISTER(name) G_PASTE(gst_plugin_, G_PASTE(name, _register)) ()
diff --git a/gst/gstpluginfeature.c b/gst/gstpluginfeature.c
index 6dd5e56d45..27debb4d8f 100644
--- a/gst/gstpluginfeature.c
+++ b/gst/gstpluginfeature.c
@@ -208,7 +208,7 @@ gst_plugin_feature_get_plugin (GstPluginFeature * feature)
* Returns: the name of the plugin that provides this feature, or %NULL if
* the feature is not associated with a plugin.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
const gchar *
gst_plugin_feature_get_plugin_name (GstPluginFeature * feature)
diff --git a/libs/gst/base/gstbasesink.c b/libs/gst/base/gstbasesink.c
index 9fcacd68b6..462005e04a 100644
--- a/libs/gst/base/gstbasesink.c
+++ b/libs/gst/base/gstbasesink.c
@@ -529,7 +529,7 @@ gst_base_sink_class_init (GstBaseSinkClass * klass)
* Setting this property to a value bigger than 0 will make the sink delay
* rendering of the buffers when it would exceed to max-bitrate.
*
- * Since: 1.1.1
+ * Since: 1.2
*/
g_object_class_install_property (gobject_class, PROP_MAX_BITRATE,
g_param_spec_uint64 ("max-bitrate", "Max Bitrate",
@@ -1280,7 +1280,7 @@ gst_base_sink_get_throttle_time (GstBaseSink * sink)
*
* Set the maximum amount of bits per second that the sink will render.
*
- * Since: 1.1.1
+ * Since: 1.2
*/
void
gst_base_sink_set_max_bitrate (GstBaseSink * sink, guint64 max_bitrate)
@@ -1301,7 +1301,7 @@ gst_base_sink_set_max_bitrate (GstBaseSink * sink, guint64 max_bitrate)
*
* Returns: the maximum number of bits per second @sink will render.
*
- * Since: 1.1.1
+ * Since: 1.2
*/
guint64
gst_base_sink_get_max_bitrate (GstBaseSink * sink)
diff --git a/libs/gst/base/gstdataqueue.c b/libs/gst/base/gstdataqueue.c
index 0c46f0c2ba..357bec1a79 100644
--- a/libs/gst/base/gstdataqueue.c
+++ b/libs/gst/base/gstdataqueue.c
@@ -222,7 +222,7 @@ gst_data_queue_init (GstDataQueue * queue)
*
* Returns: a new #GstDataQueue.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
GstDataQueue *
gst_data_queue_new (GstDataQueueCheckFullFunction checkfull,
@@ -318,7 +318,7 @@ gst_data_queue_locked_is_full (GstDataQueue * queue)
* #gst_data_queue_pop will be released.
* MT safe.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
void
gst_data_queue_flush (GstDataQueue * queue)
@@ -338,7 +338,7 @@ gst_data_queue_flush (GstDataQueue * queue)
*
* Returns: #TRUE if @queue is empty.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
gboolean
gst_data_queue_is_empty (GstDataQueue * queue)
@@ -362,7 +362,7 @@ gst_data_queue_is_empty (GstDataQueue * queue)
*
* Returns: #TRUE if @queue is full.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
gboolean
gst_data_queue_is_full (GstDataQueue * queue)
@@ -389,7 +389,7 @@ gst_data_queue_is_full (GstDataQueue * queue)
*
* MT Safe.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
void
gst_data_queue_set_flushing (GstDataQueue * queue, gboolean flushing)
@@ -441,7 +441,7 @@ gst_data_queue_push_force_unlocked (GstDataQueue * queue,
*
* Returns: #TRUE if the @item was successfully pushed on the @queue.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
gboolean
gst_data_queue_push_force (GstDataQueue * queue, GstDataQueueItem * item)
@@ -489,7 +489,7 @@ flushing:
*
* Returns: #TRUE if the @item was successfully pushed on the @queue.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
gboolean
gst_data_queue_push (GstDataQueue * queue, GstDataQueueItem * item)
@@ -568,7 +568,7 @@ _gst_data_queue_wait_non_empty (GstDataQueue * queue)
*
* Returns: #TRUE if an @item was successfully retrieved from the @queue.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
gboolean
gst_data_queue_pop (GstDataQueue * queue, GstDataQueueItem ** item)
@@ -638,7 +638,7 @@ is_of_type (gconstpointer a, gconstpointer b)
*
* Returns: #TRUE if an @item was successfully retrieved from the @queue.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
gboolean
gst_data_queue_peek (GstDataQueue * queue, GstDataQueueItem ** item)
@@ -690,7 +690,7 @@ flushing:
*
* Returns: TRUE if an element was removed.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
gboolean
gst_data_queue_drop_head (GstDataQueue * queue, GType type)
@@ -736,7 +736,7 @@ done:
* Inform the queue that the limits for the fullness check have changed and that
* any blocking gst_data_queue_push() should be unblocked to recheck the limts.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
void
gst_data_queue_limits_changed (GstDataQueue * queue)
@@ -760,7 +760,7 @@ gst_data_queue_limits_changed (GstDataQueue * queue)
*
* Get the current level of the queue.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
void
gst_data_queue_get_level (GstDataQueue * queue, GstDataQueueSize * level)
diff --git a/libs/gst/base/gstqueuearray.c b/libs/gst/base/gstqueuearray.c
index 4b83959785..4de9ed8076 100644
--- a/libs/gst/base/gstqueuearray.c
+++ b/libs/gst/base/gstqueuearray.c
@@ -52,7 +52,7 @@ struct _GstQueueArray
*
* Returns: a new #GstQueueArray object
*
- * Since: 1.2.0
+ * Since: 1.2
*/
GstQueueArray *
gst_queue_array_new (guint initial_size)
@@ -75,7 +75,7 @@ gst_queue_array_new (guint initial_size)
*
* Frees queue @array and all memory associated to it.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
void
gst_queue_array_free (GstQueueArray * array)
@@ -93,7 +93,7 @@ gst_queue_array_free (GstQueueArray * array)
*
* Returns: The head of the queue
*
- * Since: 1.2.0
+ * Since: 1.2
*/
gpointer
gst_queue_array_pop_head (GstQueueArray * array)
@@ -119,7 +119,7 @@ gst_queue_array_pop_head (GstQueueArray * array)
*
* Returns: The head of the queue
*
- * Since: 1.2.0
+ * Since: 1.2
*/
gpointer
gst_queue_array_peek_head (GstQueueArray * array)
@@ -137,7 +137,7 @@ gst_queue_array_peek_head (GstQueueArray * array)
*
* Pushes @data to the tail of the queue @array.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
void
gst_queue_array_push_tail (GstQueueArray * array, gpointer data)
@@ -190,7 +190,7 @@ gst_queue_array_push_tail (GstQueueArray * array, gpointer data)
*
* Returns: %TRUE if the queue @array is empty
*
- * Since: 1.2.0
+ * Since: 1.2
*/
gboolean
gst_queue_array_is_empty (GstQueueArray * array)
@@ -207,7 +207,7 @@ gst_queue_array_is_empty (GstQueueArray * array)
*
* Returns: the dropped element
*
- * Since: 1.2.0
+ * Since: 1.2
*/
gpointer
gst_queue_array_drop_element (GstQueueArray * array, guint idx)
@@ -301,7 +301,7 @@ gst_queue_array_drop_element (GstQueueArray * array, guint idx)
*
* Returns: Index of the found element or -1 if nothing was found.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
guint
gst_queue_array_find (GstQueueArray * array, GCompareFunc func, gpointer data)
@@ -332,7 +332,7 @@ gst_queue_array_find (GstQueueArray * array, GCompareFunc func, gpointer data)
*
* Returns: the length of the queue @array.
*
- * Since: 1.2.0
+ * Since: 1.2
*/
guint
gst_queue_array_get_length (GstQueueArray * array)