mirror of
https://github.com/rofafor/vdr-plugin-satip.git
synced 2023-10-10 13:37:42 +02:00
Increased the pid update interval to 250ms.
This commit is contained in:
parent
fb40846171
commit
6e72eba09c
4
HISTORY
4
HISTORY
@ -46,3 +46,7 @@ VDR Plugin 'satip' Revision History
|
||||
- Fixed parameters of the OPTIONS command.
|
||||
- Added a device identication into the user agent string.
|
||||
- Removed unnecessary PLAY commands and header callbacks.
|
||||
|
||||
2014-04-20: Version 0.3.0
|
||||
|
||||
- Increased the pid update interval to 250ms.
|
||||
|
@ -5,10 +5,10 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: vdr-satip 0.2.3\n"
|
||||
"Project-Id-Version: vdr-satip 0.3.0\n"
|
||||
"Report-Msgid-Bugs-To: <see README>\n"
|
||||
"POT-Creation-Date: 2014-04-12 04:12+0200\n"
|
||||
"PO-Revision-Date: 2014-04-12 04:12+0200\n"
|
||||
"POT-Creation-Date: 2014-04-20 04:20+0200\n"
|
||||
"PO-Revision-Date: 2014-04-20 04:20+0200\n"
|
||||
"Last-Translator: Gabriel Bonich <gbonich@gmail.com>\n"
|
||||
"Language-Team: Catalan <vdr@linuxtv.org>\n"
|
||||
"Language: ca\n"
|
||||
|
@ -5,10 +5,10 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: vdr-satip 0.2.3\n"
|
||||
"Project-Id-Version: vdr-satip 0.3.0\n"
|
||||
"Report-Msgid-Bugs-To: <see README>\n"
|
||||
"POT-Creation-Date: 2014-04-12 04:12+0200\n"
|
||||
"PO-Revision-Date: 2014-04-12 04:12+0200\n"
|
||||
"POT-Creation-Date: 2014-04-20 04:20+0200\n"
|
||||
"PO-Revision-Date: 2014-04-20 04:20+0200\n"
|
||||
"Last-Translator: Frank Neumann <fnu@yavdr.org>\n"
|
||||
"Language-Team: German <vdr@linuxtv.org>\n"
|
||||
"Language: de\n"
|
||||
|
@ -5,10 +5,10 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: vdr-satip 0.2.3\n"
|
||||
"Project-Id-Version: vdr-satip 0.3.0\n"
|
||||
"Report-Msgid-Bugs-To: <see README>\n"
|
||||
"POT-Creation-Date: 2014-04-12 04:12+0200\n"
|
||||
"PO-Revision-Date: 2014-04-12 04:12+0200\n"
|
||||
"POT-Creation-Date: 2014-04-20 04:20+0200\n"
|
||||
"PO-Revision-Date: 2014-04-20 04:20+0200\n"
|
||||
"Last-Translator: Gabriel Bonich <gbonich@gmail.com>\n"
|
||||
"Language-Team: Spanish <vdr@linuxtv.org>\n"
|
||||
"Language: es\n"
|
||||
|
@ -5,10 +5,10 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: vdr-satip 0.2.3\n"
|
||||
"Project-Id-Version: vdr-satip 0.3.0\n"
|
||||
"Report-Msgid-Bugs-To: <see README>\n"
|
||||
"POT-Creation-Date: 2014-04-12 04:12+0200\n"
|
||||
"PO-Revision-Date: 2014-04-12 04:12+0200\n"
|
||||
"POT-Creation-Date: 2014-04-20 04:20+0200\n"
|
||||
"PO-Revision-Date: 2014-04-20 04:20+0200\n"
|
||||
"Last-Translator: Rolf Ahrenberg\n"
|
||||
"Language-Team: Finnish <vdr@linuxtv.org>\n"
|
||||
"Language: fi\n"
|
||||
|
2
satip.c
2
satip.c
@ -25,7 +25,7 @@
|
||||
#define GITVERSION ""
|
||||
#endif
|
||||
|
||||
const char VERSION[] = "0.2.3" GITVERSION;
|
||||
const char VERSION[] = "0.3.0" GITVERSION;
|
||||
static const char DESCRIPTION[] = trNOOP("SAT>IP Devices");
|
||||
|
||||
class cPluginSatip : public cPlugin {
|
||||
|
2
tuner.h
2
tuner.h
@ -27,7 +27,7 @@ class cSatipTuner : public cThread, public cSatipTunerStatistics {
|
||||
private:
|
||||
enum {
|
||||
eConnectTimeoutMs = 1500, // in milliseconds
|
||||
ePidUpdateIntervalMs = 100, // in milliseconds
|
||||
ePidUpdateIntervalMs = 250, // in milliseconds
|
||||
eReConnectTimeoutMs = 5000, // in milliseconds
|
||||
eMinKeepAliveIntervalMs = 30000 // in milliseconds
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user