mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Increased the upper limit for the symbol rate to 30000
This commit is contained in:
parent
8c28b9f74a
commit
697b389872
@ -82,7 +82,7 @@ Henning Holtschneider <hh@holtschneider.com>
|
|||||||
Paulo Manuel Martins Lopes <pmml@netvita.pt>
|
Paulo Manuel Martins Lopes <pmml@netvita.pt>
|
||||||
for translating the OSD texts to the Portugese language
|
for translating the OSD texts to the Portugese language
|
||||||
|
|
||||||
Markus Lang <markus.lang@nissan-db.de> and Ulrich Röder
|
Markus Lang <markus.lang@nissan-db.de> and Ulrich Röder <dynamite@efr-net.de>
|
||||||
for patching the Diseqc code so that it doesn't send a Diseqc command if
|
for patching the Diseqc code so that it doesn't send a Diseqc command if
|
||||||
the Diseqc value for a given channel is '0'
|
the Diseqc value for a given channel is '0'
|
||||||
|
|
||||||
@ -97,3 +97,7 @@ J
|
|||||||
|
|
||||||
Stefan Huelswitt <huels@iname.com>
|
Stefan Huelswitt <huels@iname.com>
|
||||||
for fixing the repeat function with LIRC
|
for fixing the repeat function with LIRC
|
||||||
|
|
||||||
|
Ulrich Röder <dynamite@efr-net.de>
|
||||||
|
for pointing out that there are channels that have a symbol rate higher than
|
||||||
|
27500.
|
||||||
|
2
HISTORY
2
HISTORY
@ -578,3 +578,5 @@ Video Disk Recorder Revision History
|
|||||||
- Changed the check whether the driver is loaded in runvdr to check for the
|
- Changed the check whether the driver is loaded in runvdr to check for the
|
||||||
'dvb' module (the last one loaded).
|
'dvb' module (the last one loaded).
|
||||||
- Fixed repeat function with LIRC (thanks to Stefan Huelswitt).
|
- Fixed repeat function with LIRC (thanks to Stefan Huelswitt).
|
||||||
|
- Increased the upper limit for the symbol rate to 30000 (thanks to Ulrich
|
||||||
|
Röder).
|
||||||
|
4
menu.c
4
menu.c
@ -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: menu.c 1.80 2001/07/22 15:16:58 kls Exp $
|
* $Id: menu.c 1.81 2001/07/27 10:26:22 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
@ -541,7 +541,7 @@ cMenuEditChannel::cMenuEditChannel(int Index)
|
|||||||
Add(new cMenuEditIntItem( tr("Frequency"), &data.frequency, 10000, 13000)); //TODO exact limits???
|
Add(new cMenuEditIntItem( tr("Frequency"), &data.frequency, 10000, 13000)); //TODO exact limits???
|
||||||
Add(new cMenuEditChrItem( tr("Polarization"), &data.polarization, "hv"));
|
Add(new cMenuEditChrItem( tr("Polarization"), &data.polarization, "hv"));
|
||||||
Add(new cMenuEditIntItem( tr("Diseqc"), &data.diseqc, 0, 10)); //TODO exact limits???
|
Add(new cMenuEditIntItem( tr("Diseqc"), &data.diseqc, 0, 10)); //TODO exact limits???
|
||||||
Add(new cMenuEditIntItem( tr("Srate"), &data.srate, 22000, 27500)); //TODO exact limits - toggle???
|
Add(new cMenuEditIntItem( tr("Srate"), &data.srate, 22000, 30000)); //TODO exact limits - toggle???
|
||||||
Add(new cMenuEditIntItem( tr("Vpid"), &data.vpid, 0, 0xFFFE));
|
Add(new cMenuEditIntItem( tr("Vpid"), &data.vpid, 0, 0xFFFE));
|
||||||
Add(new cMenuEditIntItem( tr("Apid1"), &data.apid1, 0, 0xFFFE));
|
Add(new cMenuEditIntItem( tr("Apid1"), &data.apid1, 0, 0xFFFE));
|
||||||
Add(new cMenuEditIntItem( tr("Apid2"), &data.apid2, 0, 0xFFFE));
|
Add(new cMenuEditIntItem( tr("Apid2"), &data.apid2, 0, 0xFFFE));
|
||||||
|
Loading…
Reference in New Issue
Block a user