mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
The dvbhddevice plugin is now part of the VDR distribution archive
This commit is contained in:
parent
05ea68e2bb
commit
475e64eeec
@ -1394,6 +1394,7 @@ Andreas Regel <andreas.regel@gmx.de>
|
|||||||
for adding some missing 'const' statements to cBitmap
|
for adding some missing 'const' statements to cBitmap
|
||||||
for making cDevice::AddPid() store the stream type of the given pid
|
for making cDevice::AddPid() store the stream type of the given pid
|
||||||
for adding cFont::FontName() and cFont::Size()
|
for adding cFont::FontName() and cFont::Size()
|
||||||
|
for writing the dvbhddevice plugin
|
||||||
|
|
||||||
Thomas Bergwinkl <Thomas.Bergwinkl@vr-web.de>
|
Thomas Bergwinkl <Thomas.Bergwinkl@vr-web.de>
|
||||||
for fixing the validity check for channel IDs, because some providers use TIDs
|
for fixing the validity check for channel IDs, because some providers use TIDs
|
||||||
|
4
HISTORY
4
HISTORY
@ -6557,7 +6557,7 @@ Video Disk Recorder Revision History
|
|||||||
- The original display size of subtitles is now used to scale them properly when
|
- The original display size of subtitles is now used to scale them properly when
|
||||||
displaying them on an HD OSD.
|
displaying them on an HD OSD.
|
||||||
|
|
||||||
2011-04-03: Version 1.7.18
|
2011-04-17: Version 1.7.18
|
||||||
|
|
||||||
- Changed -O2 to -O3 in Make.config.template (reported by Matti Lehtimäki).
|
- Changed -O2 to -O3 in Make.config.template (reported by Matti Lehtimäki).
|
||||||
- Added a missing 'default' case in cPixmapMemory::DrawEllipse().
|
- Added a missing 'default' case in cPixmapMemory::DrawEllipse().
|
||||||
@ -6596,3 +6596,5 @@ Video Disk Recorder Revision History
|
|||||||
- Added HD stream content identifiers to vdr.5 (thanks to Christoph Haubrich).
|
- Added HD stream content identifiers to vdr.5 (thanks to Christoph Haubrich).
|
||||||
- Made cRecordingInfo::Read(FILE *f) private to avoid calls to it from outside
|
- Made cRecordingInfo::Read(FILE *f) private to avoid calls to it from outside
|
||||||
cRecordingInfo or cRecording (reported by Mika Laitio).
|
cRecordingInfo or cRecording (reported by Mika Laitio).
|
||||||
|
- The dvbhddevice plugin is now part of the VDR distribution archive (thanks to
|
||||||
|
Andreas Regel).
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
# See the main source file 'vdr.c' for copyright information and
|
# See the main source file 'vdr.c' for copyright information and
|
||||||
# how to reach the author.
|
# how to reach the author.
|
||||||
#
|
#
|
||||||
# $Id: runvdr.template 2.1 2010/01/17 12:39:27 kls Exp $
|
# $Id: runvdr.template 2.2 2011/04/17 12:34:30 kls Exp $
|
||||||
|
|
||||||
VDRPRG="./vdr"
|
VDRPRG="./vdr"
|
||||||
|
|
||||||
@ -30,8 +30,12 @@ VDROPTIONS="-w 60"
|
|||||||
VDRPLUGINS=""
|
VDRPLUGINS=""
|
||||||
# You will need to select your output device plugin if you want
|
# You will need to select your output device plugin if you want
|
||||||
# to use VDR to watch video. For instance, for a "Full Featured"
|
# to use VDR to watch video. For instance, for a "Full Featured"
|
||||||
# DVB card that would be
|
# SD DVB card that would be
|
||||||
# VDRPLUGINS="-P dvbsddevice"
|
# VDRPLUGINS="-P dvbsddevice"
|
||||||
|
# For a "Full Featured" HD DVB card you could use
|
||||||
|
# VDRPLUGINS="-P dvbhddevice"
|
||||||
|
# There are also other output device plugins available, see
|
||||||
|
# http://www.vdr-wiki.de/wiki/index.php/Plugins.
|
||||||
|
|
||||||
VDRCMD="$VDRPRG $VDROPTIONS $VDRPLUGINS $*"
|
VDRCMD="$VDRPRG $VDROPTIONS $VDRPLUGINS $*"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user