[gst-devel] Patch for gnonlin
cascardo at holoscopio.com
cascardo at holoscopio.com
Tue Jul 25 17:43:07 CEST 2006
When not able to find gnomevfssrc, gnlfilesource tries to create
filesource, which it will not find, since the element name is filesrc. I
fixed that. Patch goes attached.
-------------- next part --------------
Index: gnl/gnlfilesource.c
===================================================================
RCS file: /cvs/gstreamer/gnonlin/gnl/gnlfilesource.c,v
retrieving revision 1.19
diff -u -r1.19 gnlfilesource.c
--- gnl/gnlfilesource.c 8 May 2006 14:04:33 -0000 1.19
+++ gnl/gnlfilesource.c 25 Jul 2006 15:35:47 -0000
@@ -113,7 +113,7 @@
if (!(filesrc =
gst_element_factory_make ("gnomevfssrc", "internal-filesource")))
if (!(filesrc =
- gst_element_factory_make ("filesource", "internal-filesource")))
+ gst_element_factory_make ("filesrc", "internal-filesource")))
g_warning
("Could not create a gnomevfssrc or filesource element, are you sure you have any of them installed ?");
if (!(decodebin =
More information about the gstreamer-devel
mailing list