Revision: 282
http://artoolkit.svn.sourceforge.net/artoolkit/?rev=282&view=rev
Author: retrakker
Date: 2008-07-01 15:23:26 -0700 (Tue, 01 Jul 2008)
Log Message:
-----------
Small fix to return 0 for ar2VideoCapNext() - implementation needs to be
added to check on actual GStreamer state.
Modified Paths:
--------------
trunk/artoolkit/lib/SRC/VideoGStreamer/video.c
Modified: trunk/artoolkit/lib/SRC/VideoGStreamer/video.c
===================================================================
--- trunk/artoolkit/lib/SRC/VideoGStreamer/video.c 2008-07-01 00:20:34 UTC (rev 281)
+++ trunk/artoolkit/lib/SRC/VideoGStreamer/video.c 2008-07-01 22:23:26 UTC (rev 282)
@@ -166,8 +166,7 @@
int arVideoCapNext( void )
{
- ar2VideoCapNext(gVid);
- return 0;
+ return ar2VideoCapNext(gVid);;
}
/*---------------------------------------------------------------------------*/
@@ -378,8 +377,7 @@
int
ar2VideoCapNext(AR2VideoParamT *vid)
{
- /* gstreamer should */
- return TRUE;
+ return 0;
}
int
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|