Changeset 5f50f228482186d0a68b2f6583d6df5ffea8a6d9
- Timestamp:
- 05/24/04 22:12:27
(4 years ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1085429547 +0000
- git-parent:
[6d436261c266d5ec5d3e8a9a350b06fd917ab092]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1085429547 +0000
- Message:
HD1000 video output
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r1ce23b8 |
r5f50f22 |
|
| 282 | 282 | D: Dutch Translation |
|---|
| 283 | 283 | D: DVB-S/C/T on v4l2 API |
|---|
| | 284 | D: HD1000 port |
|---|
| 284 | 285 | S: Netherlands |
|---|
| 285 | 286 | |
|---|
| rd89f26e |
r5f50f22 |
|
| 2677 | 2677 | dnl AX_ADD_CXXFLAGS([qt_video],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include]) |
|---|
| 2678 | 2678 | dnl fi |
|---|
| | 2679 | |
|---|
| | 2680 | dnl |
|---|
| | 2681 | dnl Roku HD1000 Video output module |
|---|
| | 2682 | dnl |
|---|
| | 2683 | AC_ARG_ENABLE(hd1000v, |
|---|
| | 2684 | [ --enable-hd1000v HD1000 Video Output module (default enabled on HD1 000)]) |
|---|
| | 2685 | if test "${enable_hd1000v}" != "no" && |
|---|
| | 2686 | (test "${SYS}" != "mingw32" || test "${enable_hd1000v}" = "yes") |
|---|
| | 2687 | then |
|---|
| | 2688 | AC_LANG_PUSH([C++]) |
|---|
| | 2689 | AC_CHECK_HEADERS([cascade/graphics/CascadeScreen.h cascade/graphics/CascadeBitmap.h], |
|---|
| | 2690 | [ |
|---|
| | 2691 | can_build_roku="yes" |
|---|
| | 2692 | ], |
|---|
| | 2693 | [ |
|---|
| | 2694 | can_build_roku="no" |
|---|
| | 2695 | AC_MSG_WARN([Not building Roku HD1000 compatible video output]) |
|---|
| | 2696 | ]) |
|---|
| | 2697 | if test "$can_build_roku" = "yes" |
|---|
| | 2698 | then |
|---|
| | 2699 | AX_ADD_PLUGINS([hd1000v]) |
|---|
| | 2700 | AX_ADD_LDFLAGS([hd1000v],[-lCascade]) |
|---|
| | 2701 | fi |
|---|
| | 2702 | AC_LANG_POP([C++]) |
|---|
| | 2703 | fi |
|---|
| 2679 | 2704 | |
|---|
| 2680 | 2705 | dnl |
|---|
| ra6d6794 |
r5f50f22 |
|
| 187 | 187 | |
|---|
| 188 | 188 | * hd1000a: audio output module for the Roku HD1000 Set-Top-Box |
|---|
| | 189 | |
|---|
| | 190 | * hd1000v: video output module for the Roku HD1000 Set-Top-Box |
|---|
| 189 | 191 | |
|---|
| 190 | 192 | * headphone_channel_mixer: |
|---|
| … | … | |
| 339 | 341 | * qt: interface module using the Qt widget set. |
|---|
| 340 | 342 | |
|---|
| | 343 | * qt_video: video output module for Qt. |
|---|
| | 344 | |
|---|
| 341 | 345 | * qte: video output module for Qt Embedded. |
|---|
| 342 | 346 | |
|---|
| 343 | | * qte_main: QT Embedded wrapper for gte_main |
|---|
| 344 | | |
|---|
| 345 | 347 | * quicktime: Quicktime decoder that uses the QT library |
|---|
| 346 | 348 | |
|---|
| r6265a3a |
r5f50f22 |
|
| 8 | 8 | SOURCES_wingdi = wingdi.c |
|---|
| 9 | 9 | SOURCES_mga = mga.c |
|---|
| | 10 | SOURCES_hd1000v = hd1000v.cpp |
|---|