diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-11-24 11:42:43 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-11-24 11:42:43 +0100 |
commit | 01bff47d1c94392905f6d538a9b0695c72880c7c (patch) | |
tree | 58e077dec1e7da043295be3edb0479a04ce1137c /menu.c | |
parent | 916fc0762b49736497b44a26778a7066aa282f47 (diff) | |
download | vdr-01bff47d1c94392905f6d538a9b0695c72880c7c.tar.gz vdr-01bff47d1c94392905f6d538a9b0695c72880c7c.tar.bz2 |
Implemented DVB-T support; Removed the range limits for the Frequency and Srate parameters of channel definitions
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.139 2001/11/04 10:37:18 kls Exp $ + * $Id: menu.c 1.140 2001/11/24 11:16:31 kls Exp $ */ #include "menu.h" @@ -546,10 +546,10 @@ cMenuEditChannel::cMenuEditChannel(int Index) if (channel) { data = *channel; Add(new cMenuEditStrItem( tr("Name"), data.name, sizeof(data.name), FileNameChars)); - Add(new cMenuEditIntItem( tr("Frequency"), &data.frequency, 10000, 13000)); //TODO exact limits??? + Add(new cMenuEditIntItem( tr("Frequency"), &data.frequency)); Add(new cMenuEditChrItem( tr("Polarization"), &data.polarization, "hv")); Add(new cMenuEditIntItem( tr("DiSEqC"), &data.diseqc, 0, 10)); //TODO exact limits??? - Add(new cMenuEditIntItem( tr("Srate"), &data.srate, 22000, 30000)); //TODO exact limits - toggle??? + Add(new cMenuEditIntItem( tr("Srate"), &data.srate)); Add(new cMenuEditIntItem( tr("Vpid"), &data.vpid, 0, 0xFFFE)); Add(new cMenuEditIntItem( tr("Apid1"), &data.apid1, 0, 0xFFFE)); Add(new cMenuEditIntItem( tr("Apid2"), &data.apid2, 0, 0xFFFE)); |