Changeset 02b9cd06b9eb65b3d3a694886e35f56b071029d9

Show
Ignore:
Timestamp:
04/06/03 23:41:47 (5 years ago)
Author:
Eric Petit <titer@videolan.org>
git-committer:
Eric Petit <titer@videolan.org> 1054762907 +0000
git-parent:

[f46c8fc384003cc79e45f549f5ead2478ae300bf]

git-author:
Eric Petit <titer@videolan.org> 1054762907 +0000
Message:

Added a special access module for PVR MPEG-2 encoding boards.
It allows to change the frequency and such things quite easily, from VLC.
You'll have to --enable-pvr to build it.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • configure.ac.in

    rf57c329 r02b9cd0  
    13301330    PLUGINS="${PLUGINS} v4l" 
    13311331   ],[]) 
     1332fi 
     1333 
     1334dnl 
     1335dnl  special access module for Hauppauge PVR cards 
     1336dnl 
     1337AC_ARG_ENABLE(pvr, 
     1338  [  --enable-pvr            PVR cards access module (default disabled)]) 
     1339if test "x${enable_pvr}" = "xyes" 
     1340then 
     1341  PLUGINS="${PLUGINS} pvr" 
    13321342fi 
    13331343 
  • modules/Makefile.am

    r4dec968 r02b9cd0  
    88    access/dvdread/Modules.am \ 
    99    access/mms/Modules.am \ 
     10    access/pvr/Modules.am \ 
    1011    access/satellite/Modules.am \ 
    1112    access/v4l/Modules.am \