Changeset 5f50f228482186d0a68b2f6583d6df5ffea8a6d9

Show
Ignore:
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
  • AUTHORS

    r1ce23b8 r5f50f22  
    282282D: Dutch Translation 
    283283D: DVB-S/C/T on v4l2 API 
     284D: HD1000 port  
    284285S: Netherlands 
    285286 
  • configure.ac

    rd89f26e r5f50f22  
    26772677dnl  AX_ADD_CXXFLAGS([qt_video],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include]) 
    26782678dnl fi 
     2679 
     2680dnl 
     2681dnl Roku HD1000 Video output module 
     2682dnl 
     2683AC_ARG_ENABLE(hd1000v, 
     2684  [  --enable-hd1000v        HD1000 Video Output module (default enabled on HD1 000)]) 
     2685if test "${enable_hd1000v}" != "no" && 
     2686  (test "${SYS}" != "mingw32" || test "${enable_hd1000v}" = "yes") 
     2687then 
     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++]) 
     2703fi 
    26792704 
    26802705dnl 
  • modules/LIST

    ra6d6794 r5f50f22  
    187187 
    188188 * hd1000a: audio output module for the Roku HD1000 Set-Top-Box 
     189 
     190 * hd1000v: video output module for the Roku HD1000 Set-Top-Box 
    189191 
    190192 * headphone_channel_mixer: 
     
    339341 * qt: interface module using the Qt widget set. 
    340342 
     343 * qt_video: video output module for Qt. 
     344 
    341345 * qte: video output module for Qt Embedded. 
    342346  
    343  * qte_main: QT Embedded wrapper for gte_main 
    344  
    345347 * quicktime: Quicktime decoder that uses the QT library 
    346348 
  • modules/video_output/Modules.am

    r6265a3a r5f50f22  
    88SOURCES_wingdi = wingdi.c 
    99SOURCES_mga = mga.c 
     10SOURCES_hd1000v = hd1000v.cpp