mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-23 14:36:24 +00:00
pwg: add allocation query example
This commit is contained in:
parent
46f6cbe5fc
commit
6ad9398cbc
1 changed files with 62 additions and 1 deletions
|
@ -720,7 +720,63 @@ gst_buffer_add_my_example_meta (GstBuffer *buffer,
|
||||||
<sect2 id="section-allocation-query-ex" xreflabel="Allocation-ex">
|
<sect2 id="section-allocation-query-ex" xreflabel="Allocation-ex">
|
||||||
<title>ALLOCATION query example</title>
|
<title>ALLOCATION query example</title>
|
||||||
<para>
|
<para>
|
||||||
WRITEME
|
Below is an example of the ALLOCATION query.
|
||||||
|
</para>
|
||||||
|
<programlisting>
|
||||||
|
<![CDATA[
|
||||||
|
#include <gst/video/video.h>
|
||||||
|
#include <gst/video/gstvideometa.h>
|
||||||
|
#include <gst/video/gstvideopool.h>
|
||||||
|
|
||||||
|
GstCaps *caps;
|
||||||
|
GstQuery *query;
|
||||||
|
GstStructure *structure;
|
||||||
|
GstBufferPool *pool;
|
||||||
|
GstStructure *config;
|
||||||
|
guint size, min, max;
|
||||||
|
|
||||||
|
[...]
|
||||||
|
|
||||||
|
/* find a pool for the negotiated caps now */
|
||||||
|
query = gst_query_new_allocation (caps, TRUE);
|
||||||
|
|
||||||
|
if (!gst_pad_peer_query (scope->srcpad, query)) {
|
||||||
|
/* query failed, not a problem, we use the query defaults */
|
||||||
|
}
|
||||||
|
|
||||||
|
if (gst_query_get_n_allocation_pools (query) > 0) {
|
||||||
|
/* we got configuration from our peer, parse them */
|
||||||
|
gst_query_parse_nth_allocation_pool (query, 0, &pool, &size, &min, &max);
|
||||||
|
} else {
|
||||||
|
pool = NULL;
|
||||||
|
size = 0;
|
||||||
|
min = max = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pool == NULL) {
|
||||||
|
/* we did not get a pool, make one ourselves then */
|
||||||
|
pool = gst_video_buffer_pool_new ();
|
||||||
|
}
|
||||||
|
|
||||||
|
config = gst_buffer_pool_get_config (pool);
|
||||||
|
gst_buffer_pool_config_add_option (config, GST_BUFFER_POOL_OPTION_VIDEO_META);
|
||||||
|
gst_buffer_pool_config_set_params (config, caps, size, min, max);
|
||||||
|
gst_buffer_pool_set_config (pool, config);
|
||||||
|
|
||||||
|
/* and activate */
|
||||||
|
gst_buffer_pool_set_active (pool, TRUE);
|
||||||
|
|
||||||
|
[...]
|
||||||
|
]]>
|
||||||
|
</programlisting>
|
||||||
|
<para>
|
||||||
|
This particular implementation will make a custom
|
||||||
|
<classname>GstVideoBufferPool</classname> object that is specialized
|
||||||
|
in allocating video buffers. You can also enable the pool to
|
||||||
|
put <classname>GstVideoMeta</classname> metadata on the buffers from
|
||||||
|
the pool doing
|
||||||
|
<function>gst_buffer_pool_config_add_option (config,
|
||||||
|
GST_BUFFER_POOL_OPTION_VIDEO_META)</function>.
|
||||||
</para>
|
</para>
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
|
@ -745,6 +801,11 @@ gst_buffer_add_my_example_meta (GstBuffer *buffer,
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
<para>
|
||||||
|
Implementors of these methods should modify the given
|
||||||
|
<classname>GstQuery</classname> object by updating the pool options
|
||||||
|
and allocation options.
|
||||||
|
</para>
|
||||||
</sect2>
|
</sect2>
|
||||||
</sect1>
|
</sect1>
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|
Loading…
Reference in a new issue