diff options
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | INSTALL | 2 | ||||
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | dxr3.c | 6 |
4 files changed, 7 insertions, 7 deletions
@@ -309,8 +309,8 @@ NOTE: I havent found time to include all of the languages, will be done in pre2 2006-xx-xx: Version 0.2.6 +- adapt to VDR 1.3.42-47, oldest supported is now 1.3.42 (Ville Skyttä) - clean up leftovers from the image grab code removal in 0.2.5 (Ville Skyttä) - add Czech i18n placeholders (Ville Skyttä) -- adapt to VDR 1.3.47, which is the oldest supported version now (Ville Skyttä) - be less noisy about audio mode (non-)changes (Ville Skyttä) - add work-in-progress AC3 patch to patches/ (Agneau Egare, Ville Skyttä) @@ -2,7 +2,7 @@ Prerequisites: - Get the DXR3 drivers from http://sourceforge.net/projects/dxr3 , install, configure, test and verify the installation. -- Install the (latest) VDR developer version, or at least >= 1.3.47. +- Install the (latest) VDR developer version, or at least >= 1.3.42. - The plugin needs the libavcodec library from http://ffmpeg.sourceforge.net/ Installation: @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.1.2.22 2006/04/18 21:30:11 scop Exp $ +# $Id: Makefile,v 1.1.2.23 2006/04/19 21:57:35 scop Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -32,7 +32,7 @@ EM8300 = /usr/include ### The version number of VDR's plugin API (taken from VDR's "config.h"): -APIVERSION = $(shell grep 'define APIVERSION ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g') +APIVERSION = $(shell (grep 'define APIVERSION ' $(VDRDIR)/config.h || grep 'define VDRVERSION ' $(VDRDIR)/config.h) | awk '{ print $$3 }' | sed -e 's/"//g') ### The name of the distribution archive: @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: dxr3.c,v 1.1.2.23 2006/04/18 21:33:18 scop Exp $ + * $Id: dxr3.c,v 1.1.2.24 2006/04/19 21:57:35 scop Exp $ * */ @@ -19,8 +19,8 @@ static const char *VERSION = "0.2.6-cvs"; static const char *DESCRIPTION = "Hardware MPEG decoder"; static const char *MAINMENUENTRY = "DXR3"; -#if VDRVERSNUM && VDRVERSNUM < 10347 -#error "This version of the DXR3 plugin needs VDR version >= 1.3.47" +#if VDRVERSNUM && VDRVERSNUM < 10342 +#error "This version of the DXR3 plugin needs VDR version >= 1.3.42" #endif #define DXR3_MAX_CARDS 4 |