Polarization can now be uppercase or lowercase in channels.conf

This commit is contained in:
Klaus Schmidinger 2000-07-16 15:30:48 +02:00
parent d0179ea219
commit 94fa4861f8
2 changed files with 4 additions and 2 deletions

View File

@ -80,3 +80,5 @@ Video Disk Recorder Revision History
- Channel names and timer filenames can now contain blanks. To avoid problems - Channel names and timer filenames can now contain blanks. To avoid problems
with file names that contain blanks, all blanks in recording file names are with file names that contain blanks, all blanks in recording file names are
converted to underscores. converted to underscores.
- The polarization can now be given in uppercase or lowercase characters in
channels.conf.

View File

@ -4,7 +4,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: dvbapi.c 1.13 2000/07/15 16:03:13 kls Exp $ * $Id: dvbapi.c 1.14 2000/07/16 15:28:50 kls Exp $
*/ */
#include "dvbapi.h" #include "dvbapi.h"
@ -1337,7 +1337,7 @@ bool cDvbApi::SetChannel(int FrequencyMHz, char Polarization, int Diseqc, int Sr
front.freq = freq * 1000000UL; front.freq = freq * 1000000UL;
front.diseqc = Diseqc; front.diseqc = Diseqc;
front.srate = Srate * 1000; front.srate = Srate * 1000;
front.volt = (Polarization == 'v') ? 0 : 1; front.volt = (Polarization == 'v' || Polarization == 'V') ? 0 : 1;
front.video_pid = Vpid; front.video_pid = Vpid;
front.audio_pid = Apid; front.audio_pid = Apid;
front.fec = 8; front.fec = 8;