Correct compilation of the Quad code.

This commit is contained in:
xliska
2010-07-09 15:21:58 +00:00
parent e4c8962c6c
commit 2b38f8faa5
3 changed files with 11 additions and 5 deletions

View File

@@ -38,6 +38,11 @@
*/
#undef HAVE_DECKLINK
/*
* Define this is you have a Quad SDI card
*/
#undef HAVE_QUAD
/*
* Define this if you want FastDXT support
*/

View File

@@ -47,8 +47,8 @@
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Revision: 1.9 $
* $Date: 2009/12/11 15:29:39 $
* $Revision: 1.10 $
* $Date: 2010/07/09 15:21:58 $
*
*/
@@ -64,6 +64,7 @@
#include "video_capture/testcard.h"
#include "video_capture/null.h"
#include "video_capture/decklink.h"
#include "video_capture/quad.h"
#define VIDCAP_MAGIC 0x76ae98f0

View File

@@ -49,13 +49,13 @@
#include "config_unix.h"
#include "config_win32.h"
#ifndef HAVE_MACOSX
#ifdef HAVE_QUAD /* From config.h */
#include "debug.h"
#include "video_types.h"
#include "video_capture.h"
#ifndef HAVE_MACOSX
#ifdef HAVE_QUAD /* From config.h */
#include "video_capture/quad.h"
#include <stdio.h>