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:
Tim-Philipp Müller 2006-06-23 10:30:09 +00:00
parent 1f5a5c6bbe
commit f4ff8137ad
2 changed files with 8 additions and 2 deletions

View file

@ -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):

View file

@ -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)