mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-25 16:48:11 +00:00
docs/manual/advanced-dataaccess.xml: Fix buffer probe example compilation in
Original commit message from CVS: * docs/manual/advanced-dataaccess.xml: Fix buffer probe example compilation in ADM (#345708).
This commit is contained in:
parent
1f5a5c6bbe
commit
f4ff8137ad
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2006-06-23 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* docs/manual/advanced-dataaccess.xml:
|
||||||
|
Fix buffer probe example compilation in
|
||||||
|
ADM (#345708).
|
||||||
|
|
||||||
2006-06-22 Edward Hervey <edward@fluendo.com>
|
2006-06-22 Edward Hervey <edward@fluendo.com>
|
||||||
|
|
||||||
* gst/gstelement.c: (gst_element_pads_activate):
|
* gst/gstelement.c: (gst_element_pads_activate):
|
||||||
|
|
|
@ -66,7 +66,7 @@ main (gint argc,
|
||||||
{
|
{
|
||||||
GMainLoop *loop;
|
GMainLoop *loop;
|
||||||
GstElement *pipeline, *src, *sink, *filter, *csp;
|
GstElement *pipeline, *src, *sink, *filter, *csp;
|
||||||
GstCaps *caps;
|
GstCaps *filtercaps;
|
||||||
GstPad *pad;
|
GstPad *pad;
|
||||||
|
|
||||||
/* init GStreamer */
|
/* init GStreamer */
|
||||||
|
@ -80,7 +80,7 @@ main (gint argc,
|
||||||
g_error ("Could not create 'videotestsrc' element");
|
g_error ("Could not create 'videotestsrc' element");
|
||||||
|
|
||||||
filter = gst_element_factory_make ("capsfilter", "filter");
|
filter = gst_element_factory_make ("capsfilter", "filter");
|
||||||
g_assert (filer != NULL); /* should always exist */
|
g_assert (filter != NULL); /* should always exist */
|
||||||
|
|
||||||
csp = gst_element_factory_make ("ffmpegcolorspace", "csp");
|
csp = gst_element_factory_make ("ffmpegcolorspace", "csp");
|
||||||
if (csp == NULL)
|
if (csp == NULL)
|
||||||
|
|
Loading…
Reference in a new issue