Commit 5f50f228 authored by Jean-Paul Saman's avatar Jean-Paul Saman

HD1000 video output

parent 6d436261
......@@ -282,6 +282,7 @@ D: Familiar and PDA Linux interface
D: Opie PDA Linux interface
D: Dutch Translation
D: DVB-S/C/T on v4l2 API
D: HD1000 port
S: Netherlands
N: Arnaud Schauly
......
......@@ -2677,6 +2677,31 @@ dnl LDFLAGS="${LDFLAGS_save}"
dnl AX_ADD_CXXFLAGS([qt_video],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include])
dnl fi
dnl
dnl Roku HD1000 Video output module
dnl
AC_ARG_ENABLE(hd1000v,
[ --enable-hd1000v HD1000 Video Output module (default enabled on HD1 000)])
if test "${enable_hd1000v}" != "no" &&
(test "${SYS}" != "mingw32" || test "${enable_hd1000v}" = "yes")
then
AC_LANG_PUSH([C++])
AC_CHECK_HEADERS([cascade/graphics/CascadeScreen.h cascade/graphics/CascadeBitmap.h],
[
can_build_roku="yes"
],
[
can_build_roku="no"
AC_MSG_WARN([Not building Roku HD1000 compatible video output])
])
if test "$can_build_roku" = "yes"
then
AX_ADD_PLUGINS([hd1000v])
AX_ADD_LDFLAGS([hd1000v],[-lCascade])
fi
AC_LANG_POP([C++])
fi
dnl
dnl Windows DirectX module
dnl
......
......@@ -187,6 +187,8 @@ $Id$
* hd1000a: audio output module for the Roku HD1000 Set-Top-Box
* hd1000v: video output module for the Roku HD1000 Set-Top-Box
* headphone_channel_mixer:
headphone channel mixer with virtual spatialization effect.
......@@ -338,10 +340,10 @@ $Id$
* qt: interface module using the Qt widget set.
* qt_video: video output module for Qt.
* qte: video output module for Qt Embedded.
* qte_main: QT Embedded wrapper for gte_main
* quicktime: Quicktime decoder that uses the QT library
* rawdv: Raw DV demuxer
......
......@@ -7,3 +7,4 @@ SOURCES_vout_sdl = sdl.c
SOURCES_svgalib = svgalib.c
SOURCES_wingdi = wingdi.c
SOURCES_mga = mga.c
SOURCES_hd1000v = hd1000v.cpp
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment