[artoolkit-commits] artoolkit/lib/SRC/VideoGStreamer video.c, 1.8, 1.9
Optical marker tracking and overlay for augmented reality.
Brought to you by:
philip_lamb
From: Hartmut S. <ret...@us...> - 2007-02-21 03:20:11
|
Update of /cvsroot/artoolkit/artoolkit/lib/SRC/VideoGStreamer In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv24680/lib/SRC/VideoGStreamer Modified Files: video.c Log Message: Minor enhancement to allow RTSP streaming sources to be used through GStreamer. Added a piece of documentation for the correct configuration string. Index: video.c =================================================================== RCS file: /cvsroot/artoolkit/artoolkit/lib/SRC/VideoGStreamer/video.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** video.c 23 Jan 2007 00:39:27 -0000 1.8 --- video.c 21 Feb 2007 03:20:07 -0000 1.9 *************** *** 256,259 **** --- 256,260 ---- gst_pad_add_buffer_probe (pad, G_CALLBACK (cb_have_data), vid); + *************** *** 289,293 **** /* now preroll for V4L v2 interfaces */ if ((strstr(config, "v4l2src") != 0) || ! (strstr(config, "dv1394src") != 0)) { /* set playing state of the pipeline */ --- 290,295 ---- /* now preroll for V4L v2 interfaces */ if ((strstr(config, "v4l2src") != 0) || ! (strstr(config, "dv1394src") != 0) || ! (strstr(config, "rtspsrc") != 0) ) { /* set playing state of the pipeline */ |