Update of /cvsroot/artoolkit/artoolkit/lib/SRC/VideoLinux1394Cam
In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv22304
Modified Files:
Makefile.in
Log Message:
We have to force -O3 compilation in the Bayer decoding section because it
has to be highly inlined and optimised, otherwise the code runs so slow it
is unusable.
Index: Makefile.in
===================================================================
RCS file: /cvsroot/artoolkit/artoolkit/lib/SRC/VideoLinux1394Cam/Makefile.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Makefile.in 4 Sep 2006 08:37:41 -0000 1.2
--- Makefile.in 15 Sep 2006 04:06:04 -0000 1.3
***************
*** 7,12 ****
# compiler
#
CC= cc
! CFLAG= @CFLAG@ -I$(INC_DIR)
#
# For making the library
--- 7,14 ----
# compiler
#
+ # Note we hard code in -O3 here because the Bayer decoder needs to be highly
+ # optimised otherwise it runs so slow you can't use it!
CC= cc
! CFLAG= @CFLAG@ -I$(INC_DIR) -O3
#
# For making the library
|