mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
With VDR 1.7.25 priorities down to -99 will be used
This commit is contained in:
parent
26af4459d8
commit
a63f7247cb
2
HISTORY
2
HISTORY
@ -1,6 +1,8 @@
|
|||||||
VDR Plugin 'streamdev' Revision History
|
VDR Plugin 'streamdev' Revision History
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
|
|
||||||
|
- With VDR 1.7.25 priorities down to -99 will be used. Please update
|
||||||
|
"Minimum Priority" in streamdev-client setup.
|
||||||
- Use the new streamdev-client setup option "Live TV Priority" to control
|
- Use the new streamdev-client setup option "Live TV Priority" to control
|
||||||
precedence among multiple clients. The VDR option "Primary Limit" which
|
precedence among multiple clients. The VDR option "Primary Limit" which
|
||||||
has previouly been used for this purpose has been dropped in VDR 1.7.25.
|
has previouly been used for this purpose has been dropped in VDR 1.7.25.
|
||||||
|
@ -34,7 +34,7 @@ cStreamdevDevice::cStreamdevDevice(void) {
|
|||||||
|
|
||||||
m_Device = this;
|
m_Device = this;
|
||||||
m_Pids = 0;
|
m_Pids = 0;
|
||||||
m_Priority = -1;
|
m_Priority = -100;
|
||||||
m_DvrClosed = true;
|
m_DvrClosed = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ cStreamdevClientSetup::cStreamdevClientSetup(void) {
|
|||||||
StreamFilters = false;
|
StreamFilters = false;
|
||||||
HideMenuEntry = false;
|
HideMenuEntry = false;
|
||||||
LivePriority = 0;
|
LivePriority = 0;
|
||||||
MinPriority = -1;
|
MinPriority = -MAXPRIORITY;
|
||||||
MaxPriority = MAXPRIORITY;
|
MaxPriority = MAXPRIORITY;
|
||||||
#if APIVERSNUM >= 10700
|
#if APIVERSNUM >= 10700
|
||||||
NumProvidedSystems = 1;
|
NumProvidedSystems = 1;
|
||||||
@ -56,8 +56,8 @@ cStreamdevClientMenuSetupPage::cStreamdevClientMenuSetupPage(void) {
|
|||||||
Add(new cMenuEditIntItem (tr("Timeout (s)"), &m_NewSetup.Timeout, 1, 15));
|
Add(new cMenuEditIntItem (tr("Timeout (s)"), &m_NewSetup.Timeout, 1, 15));
|
||||||
Add(new cMenuEditBoolItem(tr("Filter Streaming"), &m_NewSetup.StreamFilters));
|
Add(new cMenuEditBoolItem(tr("Filter Streaming"), &m_NewSetup.StreamFilters));
|
||||||
Add(new cMenuEditIntItem (tr("Live TV Priority"), &m_NewSetup.LivePriority, 0, MAXPRIORITY));
|
Add(new cMenuEditIntItem (tr("Live TV Priority"), &m_NewSetup.LivePriority, 0, MAXPRIORITY));
|
||||||
Add(new cMenuEditIntItem (tr("Minimum Priority"), &m_NewSetup.MinPriority, -1, MAXPRIORITY));
|
Add(new cMenuEditIntItem (tr("Minimum Priority"), &m_NewSetup.MinPriority, -MAXPRIORITY, MAXPRIORITY));
|
||||||
Add(new cMenuEditIntItem (tr("Maximum Priority"), &m_NewSetup.MaxPriority, -1, MAXPRIORITY));
|
Add(new cMenuEditIntItem (tr("Maximum Priority"), &m_NewSetup.MaxPriority, -MAXPRIORITY, MAXPRIORITY));
|
||||||
#if APIVERSNUM >= 10715
|
#if APIVERSNUM >= 10715
|
||||||
Add(new cMenuEditIntItem (tr("Broadcast Systems / Cost"), &m_NewSetup.NumProvidedSystems, 1, 15));
|
Add(new cMenuEditIntItem (tr("Broadcast Systems / Cost"), &m_NewSetup.NumProvidedSystems, 1, 15));
|
||||||
#elif APIVERSNUM >= 10700
|
#elif APIVERSNUM >= 10700
|
||||||
|
Loading…
Reference in New Issue
Block a user