mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Changed -O2 to -O3 in Make.config.template (reported by Matti Lehtimäki). - Added a missing 'default' case in cPixmapMemory::DrawEllipse(). - Fixed some direct comparisons of double values. - Fixed detecting frames on channels that broadcast with separate "fields" instead of complete frames. - Made updating the editing marks during replay react faster in case the marks file has just been written (with a patch from Udo Richter). - Fixed horizontal scaling of subtitles (reported by Reinhard Nissl). - Stripped the note "The data returned by this function is only used for informational purposes (if any)" from the description of cDevice::GetVideoSize(). The VideoAspect is now used to properly scale subtitles. - Fixed cUnbufferedFile::Seek() in case it is compiled without USE_FADVISE (thanks to Juergen Lock). - Fixed the Language header of the Serbian translation file (thanks to Ville Skyttä). - Added anti-aliasing when upscaling bitmaps, which improves the display of SD subtitles when replayed on an HD OSD (thanks to Reinhard Nissl for his help in debugging). - Renamed cBitmap::Scale() to Scaled(), because it doesn't modify the bitmap itself, but rather returns a scaled copy. - Fixed the description of cReceiver in PLUGINS.html, regarding detaching a receiver from its device before deleting it (reported by Winfried Köhler). This change in behavior was introduced in version 1.5.7. - Fixed scaling subtitles in case the OSD size is exactly the same as the display size of the subtitles. - Added a missing initialization to sDvbSpuRect (reported by Sergiu Dotenco). - Replaced "%lld" and "%llX" print format specifiers with "PRId64" and "PRIX64" to avoid compiler warnings with gcc 4.5.2 (thanks to Sergiu Dotenco). On a personal note: I find it a step in the totally wrong direction that there have been macros introduced to work around this problem in the first place. There should have been "real" format specifiers defined that address this. These macros are nothing but an ugly workaround. - Added Cancel(3) to ~cTrueColorDemo() in the "osddemo" plugin (thanks to Reinhard Nissl). - Added a missing font deletion in cTrueColorDemo::Action() in the "osddemo" plugin (thanks to Reinhard Nissl). - Fixed a buffer overflow in cFont::Bidi() (thanks to Reinhard Nissl). - 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 cRecordingInfo or cRecording (reported by Mika Laitio). - The dvbhddevice plugin is now part of the VDR distribution archive (thanks to Andreas Regel). - Removed an obsolete local variable in dvbsdffosd.c (thanks to Paul Menzel). - Fixed a possible NULL pointer dereference in osddemo.c (reported by Paul Menzel). - Now using pkg-config to get fribidi, freetype and fontconfig cflags and libs (thanks to Ville Skyttä). - The Makefile now also installs the include files (thanks to Ville Skyttä). - Added handling of "ANSI/SCTE 57" descriptors (thanks too Rolf Ahrenberg). - Avoiding an unecessary call to Recordings.ResetResume() (thanks to Reinhard Nissl).
76 lines
1.9 KiB
Bash
Executable File
76 lines
1.9 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# runvdr: Loads the DVB driver and runs VDR
|
|
#
|
|
# If VDR exits abnormally, the driver will be reloaded
|
|
# and VDR restarted.
|
|
#
|
|
# In order to actually use this script you need to implement
|
|
# the functions DriverLoaded(), LoadDriver() and UnloadDriver()
|
|
# and maybe adjust the VDRPRG and VDRCMD to your particular
|
|
# requirements.
|
|
#
|
|
# Since this script loads the DVB driver, it must be started
|
|
# as user 'root'. Add the option "-u username" to run VDR
|
|
# under the given user name.
|
|
#
|
|
# Any command line parameters will be passed on to the
|
|
# actual 'vdr' program.
|
|
#
|
|
# See the main source file 'vdr.c' for copyright information and
|
|
# how to reach the author.
|
|
#
|
|
# $Id: runvdr.template 2.2 2011/04/17 12:34:30 kls Exp $
|
|
|
|
VDRPRG="./vdr"
|
|
|
|
VDROPTIONS="-w 60"
|
|
# For other options see manpage vdr.1
|
|
|
|
VDRPLUGINS=""
|
|
# You will need to select your output device plugin if you want
|
|
# to use VDR to watch video. For instance, for a "Full Featured"
|
|
# SD DVB card that would be
|
|
# 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 $*"
|
|
|
|
KILL="/usr/bin/killall -q -TERM"
|
|
|
|
# Detect whether the DVB driver is already loaded
|
|
# and return 0 if it *is* loaded, 1 if not:
|
|
function DriverLoaded()
|
|
{
|
|
return 1
|
|
}
|
|
|
|
# Load all DVB driver modules needed for your hardware:
|
|
function LoadDriver()
|
|
{
|
|
}
|
|
|
|
# Unload all DVB driver modules loaded in LoadDriver():
|
|
function UnloadDriver()
|
|
{
|
|
}
|
|
|
|
# Load driver if it hasn't been loaded already:
|
|
if ! DriverLoaded; then
|
|
LoadDriver
|
|
fi
|
|
|
|
while (true) do
|
|
eval "$VDRCMD"
|
|
if test $? -eq 0 -o $? -eq 2; then exit; fi
|
|
echo "`date` reloading DVB driver"
|
|
$KILL $VDRPRG
|
|
sleep 10
|
|
UnloadDriver
|
|
LoadDriver
|
|
echo "`date` restarting VDR"
|
|
done
|