[artoolkit-commits] artoolkit/lib/SRC/VideoGStreamer video.c, 1.1, 1.2
Optical marker tracking and overlay for augmented reality.
Brought to you by:
philip_lamb
From: Hartmut S. <ret...@us...> - 2006-06-30 13:14:30
|
Update of /cvsroot/artoolkit/artoolkit/lib/SRC/VideoGStreamer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25342/lib/SRC/VideoGStreamer Modified Files: video.c Log Message: Fixed header for hidden implementation Index: video.c =================================================================== RCS file: /cvsroot/artoolkit/artoolkit/lib/SRC/VideoGStreamer/video.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** video.c 30 Jun 2006 04:38:40 -0000 1.1 --- video.c 30 Jun 2006 13:13:13 -0000 1.2 *************** *** 23,26 **** --- 23,43 ---- + struct _AR2VideoParamT { + + /* GStreamer pipeline */ + GstElement *pipeline; + + /* GStreamer identity needed for probing */ + GstElement *probe; + + /* size of the image */ + int width, height; + + /* the actual video buffer */ + ARUint8 *videoBuffer; + + }; + + static AR2VideoParamT *gVid = 0; |