mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
gst/: Another 1% more coverage.
Original commit message from CVS: * gst/gstbuffer.h: * gst/gstpad.c: * gst/gstparse.c: Another 1% more coverage.
This commit is contained in:
parent
b8d492863b
commit
df2df58966
4 changed files with 51 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2005-10-20 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
|
* gst/gstbuffer.h:
|
||||||
|
* gst/gstpad.c:
|
||||||
|
* gst/gstparse.c:
|
||||||
|
Another 1% more coverage.
|
||||||
|
|
||||||
2005-10-20 Wim Taymans <wim@fluendo.com>
|
2005-10-20 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* docs/gst/gstreamer-sections.txt:
|
* docs/gst/gstreamer-sections.txt:
|
||||||
|
|
|
@ -317,8 +317,32 @@ GstBuffer* gst_buffer_create_sub (GstBuffer *parent, guint offset, guint size);
|
||||||
gboolean gst_buffer_is_span_fast (GstBuffer *buf1, GstBuffer *buf2);
|
gboolean gst_buffer_is_span_fast (GstBuffer *buf1, GstBuffer *buf2);
|
||||||
GstBuffer* gst_buffer_span (GstBuffer *buf1, guint32 offset, GstBuffer *buf2, guint32 len);
|
GstBuffer* gst_buffer_span (GstBuffer *buf1, guint32 offset, GstBuffer *buf2, guint32 len);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gst_value_set_buffer:
|
||||||
|
* @v: a #GstValue to receive the data
|
||||||
|
* @b: a #GstBuffer to assign to the GstValue
|
||||||
|
*
|
||||||
|
* Sets @b as the value of @v, correclty incrementing the refcount of
|
||||||
|
* the buffer.
|
||||||
|
*/
|
||||||
#define gst_value_set_buffer(v,b) gst_value_set_mini_object(v, GST_MINI_OBJECT(b))
|
#define gst_value_set_buffer(v,b) gst_value_set_mini_object(v, GST_MINI_OBJECT(b))
|
||||||
|
/**
|
||||||
|
* gst_value_take_buffer:
|
||||||
|
* @v: a #GstValue to receive the data
|
||||||
|
* @b: a #GstBuffer to assign to the GstValue
|
||||||
|
*
|
||||||
|
* Sets @b as the value of @v, this function lets the GstValue
|
||||||
|
* take ownership of the buffer.
|
||||||
|
*/
|
||||||
#define gst_value_take_buffer(v,b) gst_value_take_mini_object(v, GST_MINI_OBJECT(b))
|
#define gst_value_take_buffer(v,b) gst_value_take_mini_object(v, GST_MINI_OBJECT(b))
|
||||||
|
/**
|
||||||
|
* gst_value_get_buffer:
|
||||||
|
* @v: a #GstValue to qeury
|
||||||
|
*
|
||||||
|
* Receives a #GstBuffer as the value of @v. This function does not
|
||||||
|
* increase the refcount of the returned buffer so the buffer remains
|
||||||
|
* valid as long as you own a refcount to the GstValue.
|
||||||
|
*/
|
||||||
#define gst_value_get_buffer(v) GST_BUFFER (gst_value_get_mini_object(v))
|
#define gst_value_get_buffer(v) GST_BUFFER (gst_value_get_mini_object(v))
|
||||||
|
|
||||||
/* --- protected --- */
|
/* --- protected --- */
|
||||||
|
|
13
gst/gstpad.c
13
gst/gstpad.c
|
@ -2777,6 +2777,19 @@ no_func:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gst_pad_query_default:
|
||||||
|
* @pad: a #GstPad to call the default query handler on.
|
||||||
|
* @query: the #GstQuery to handle.
|
||||||
|
*
|
||||||
|
* Invokes the default query handler for the given pad.
|
||||||
|
* The query is sent to all pads internally linked to @pad. Note that
|
||||||
|
* if there are many possible sink pads that are internally linked to
|
||||||
|
* @pad, only one will be sent the query.
|
||||||
|
* Multi-sinkpad elements should implement custom query handlers.
|
||||||
|
*
|
||||||
|
* Returns: TRUE if the query was performed succesfully.
|
||||||
|
*/
|
||||||
gboolean
|
gboolean
|
||||||
gst_pad_query_default (GstPad * pad, GstQuery * query)
|
gst_pad_query_default (GstPad * pad, GstQuery * query)
|
||||||
{
|
{
|
||||||
|
|
|
@ -38,6 +38,13 @@
|
||||||
|
|
||||||
extern GstElement *_gst_parse_launch (const gchar *, GError **);
|
extern GstElement *_gst_parse_launch (const gchar *, GError **);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gst_parse_error_quark:
|
||||||
|
*
|
||||||
|
* Get the error quark used by the parsing subsystem.
|
||||||
|
*
|
||||||
|
* Returns: the quark of the parse errors.
|
||||||
|
*/
|
||||||
GQuark
|
GQuark
|
||||||
gst_parse_error_quark (void)
|
gst_parse_error_quark (void)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue