Mofified TS buffer size range.

This commit is contained in:
Rolf Ahrenberg 2007-10-11 19:54:20 +00:00
parent c220b5e692
commit 3822a46f4f
2 changed files with 4 additions and 3 deletions

3
README
View File

@ -45,7 +45,7 @@ Setup menu:
- TS buffer size [MB] = 2 Defines ringbuffer size for transport - TS buffer size [MB] = 2 Defines ringbuffer size for transport
stream in MB. stream in MB.
The valid range: 1...16 The valid range: 1...4
- TS buffer prefill ratio [%] = 0 Defines prefill ratio for transport - TS buffer prefill ratio [%] = 0 Defines prefill ratio for transport
stream ringbuffer before data is stream ringbuffer before data is
transferred to VDR. transferred to VDR.
@ -64,6 +64,7 @@ Setup menu:
contain that many "Disable filter" options contain that many "Disable filter" options
which allow you to disable the individual which allow you to disable the individual
section filters. section filters.
The valid range: 0...7
- [Red:Channels] Opens IPTV channel editor. - [Red:Channels] Opens IPTV channel editor.
- [Blue:Info] Opens IPTV information/statistics menu. - [Blue:Info] Opens IPTV information/statistics menu.

View File

@ -3,7 +3,7 @@
* *
* See the README file for copyright information and how to reach the author. * See the README file for copyright information and how to reach the author.
* *
* $Id: setup.c,v 1.29 2007/10/10 20:54:58 rahrenbe Exp $ * $Id: setup.c,v 1.30 2007/10/11 19:54:20 rahrenbe Exp $
*/ */
#include <string.h> #include <string.h>
@ -586,7 +586,7 @@ void cIptvPluginSetup::Setup(void)
{ {
int current = Current(); int current = Current();
Clear(); Clear();
Add(new cMenuEditIntItem( tr("TS buffer size [MB]"), &tsBufferSize, 2, 16)); Add(new cMenuEditIntItem( tr("TS buffer size [MB]"), &tsBufferSize, 1, 4));
Add(new cMenuEditIntItem( tr("TS buffer prefill ratio [%]"), &tsBufferPrefill, 0, 40)); Add(new cMenuEditIntItem( tr("TS buffer prefill ratio [%]"), &tsBufferPrefill, 0, 40));
Add(new cMenuEditBoolItem(tr("Use section filtering"), &sectionFiltering)); Add(new cMenuEditBoolItem(tr("Use section filtering"), &sectionFiltering));
if (sectionFiltering) { if (sectionFiltering) {