Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
5f50f228
Commit
5f50f228
authored
May 24, 2004
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
HD1000 video output
parent
6d436261
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
357 additions
and
2 deletions
+357
-2
AUTHORS
AUTHORS
+1
-0
configure.ac
configure.ac
+25
-0
modules/LIST
modules/LIST
+4
-2
modules/video_output/Modules.am
modules/video_output/Modules.am
+1
-0
modules/video_output/hd1000v.cpp
modules/video_output/hd1000v.cpp
+326
-0
No files found.
AUTHORS
View file @
5f50f228
...
...
@@ -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
...
...
configure.ac
View file @
5f50f228
...
...
@@ -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
...
...
modules/LIST
View file @
5f50f228
...
...
@@ -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,9 +340,9 @@ $Id$
* qt: interface module using the Qt widget set.
* qt
e: video output module for Qt Embedded
.
* qt
_video: video output module for Qt
.
* qte
_main: QT Embedded wrapper for gte_main
* qte
: video output module for Qt Embedded.
* quicktime: Quicktime decoder that uses the QT library
...
...
modules/video_output/Modules.am
View file @
5f50f228
...
...
@@ -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
modules/video_output/hd1000v.cpp
0 → 100644
View file @
5f50f228
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment