[artoolkit-commits] artoolkit/lib/SRC/VideoLinux1394Cam video.c,1.4,1.5
Optical marker tracking and overlay for augmented reality.
Brought to you by:
philip_lamb
From: Philip L. <phi...@us...> - 2006-05-23 01:43:26
|
Update of /cvsroot/artoolkit/artoolkit/lib/SRC/VideoLinux1394Cam In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15330 Modified Files: video.c Log Message: Don't stop video if already stopped in ar2VideoClose (fix for bug 1452403). Index: video.c =================================================================== RCS file: /cvsroot/artoolkit/artoolkit/lib/SRC/VideoLinux1394Cam/video.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** video.c 5 Apr 2006 05:48:24 -0000 1.4 --- video.c 23 May 2006 01:42:41 -0000 1.5 *************** *** 466,470 **** int i; ! if( vid->status > 0 ) ar2VideoCapStop( vid ); #if 0 --- 466,470 ---- int i; ! if (vid->status == 1 || vid->status == 2) ar2VideoCapStop(vid); #if 0 |