mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +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>
|
||||
|
||||
* gst/gstelement.c: (gst_element_pads_activate):
|
||||
|
|
|
@ -66,7 +66,7 @@ main (gint argc,
|
|||
{
|
||||
GMainLoop *loop;
|
||||
GstElement *pipeline, *src, *sink, *filter, *csp;
|
||||
GstCaps *caps;
|
||||
GstCaps *filtercaps;
|
||||
GstPad *pad;
|
||||
|
||||
/* init GStreamer */
|
||||
|
@ -80,7 +80,7 @@ main (gint argc,
|
|||
g_error ("Could not create 'videotestsrc' element");
|
||||
|
||||
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");
|
||||
if (csp == NULL)
|
||||
|
|
Loading…
Reference in a new issue