Update of /cvsroot/artoolkit/artoolkit/util/calib_camera2
In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv6406/util/calib_camera2
Modified Files:
main.c
Log Message:
The DRAGONFLY flag in the Linux 1394 DC code was never implemented properly
or used for anything. Since we now have proper DragonFly camera support in the video
1394 code, I have removed this flag because otherwise it will be confusing for future
developers.
Index: main.c
===================================================================
RCS file: /cvsroot/artoolkit/artoolkit/util/calib_camera2/main.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** main.c 30 Jun 2006 04:38:40 -0000 1.12
--- main.c 15 Sep 2006 03:08:18 -0000 1.13
***************
*** 66,74 ****
static char *vconf = "-width=640 -height=480";
# elif defined(AR_INPUT_1394CAM)
- # ifndef DRAGONFLY
static char *vconf = "-mode=640x480_YUV411";
- # else
- static char *vconf = "-mode=640x480_MONO_COLOR";
- # endif
# elif defined(AR_INPUT_DV)
static char *vconf = "";
--- 66,70 ----
|