mirror of
https://github.com/rofafor/vdr-plugin-iptv.git
synced 2023-10-10 11:37:03 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f7369c9578 | ||
|
|
876d0d954e |
12
README
12
README
@@ -29,15 +29,15 @@ filtering capabilities which allow for example EIT information to be
|
|||||||
extracted from the incoming stream.
|
extracted from the incoming stream.
|
||||||
|
|
||||||
Currently the IPTV plugin has direct support for both multicast UDP/RTP
|
Currently the IPTV plugin has direct support for both multicast UDP/RTP
|
||||||
and unicast HTTP MPEG1/2 transport streams. Also a file input method is
|
and unicast HTTP MPEG1/2, H.264 and H.265 transport streams. Also a file
|
||||||
supported, but a file delay must be selected individually to prevent
|
input method is supported, but a file delay must be selected individually
|
||||||
VDR's transfer buffer over/underflow. Therefore the file input should be
|
to prevent VDR's transfer buffer over/underflow. Therefore the file input
|
||||||
considered as a testing feature only.
|
should be considered as a testing feature only.
|
||||||
|
|
||||||
IPTV plugin also features a support for external streaming applications.
|
IPTV plugin also features a support for external streaming applications.
|
||||||
With proper helper applications and configuration IPTV plugin is able to
|
With proper helper applications and configuration IPTV plugin is able to
|
||||||
display not only MPEG1/2 transport streams but also other formats like
|
display not only MPEG1/2, H.264 and H.265 transport streams but also other
|
||||||
MP3 radio streams, mms video streams and so on.
|
formats like MP3 radio streams, mms video streams and so on.
|
||||||
|
|
||||||
Installation:
|
Installation:
|
||||||
|
|
||||||
|
|||||||
2
setup.c
2
setup.c
@@ -192,7 +192,7 @@ void cIptvPluginSetup::StoreFilters(const char *nameP, int *valuesP)
|
|||||||
char *q = buffer;
|
char *q = buffer;
|
||||||
for (int i = 0; i < SECTION_FILTER_TABLE_SIZE; ++i) {
|
for (int i = 0; i < SECTION_FILTER_TABLE_SIZE; ++i) {
|
||||||
char s[3];
|
char s[3];
|
||||||
if (valuesP[i] < 0)
|
if ((valuesP[i] < 0) || (valuesP[i] >= SECTION_FILTER_TABLE_SIZE))
|
||||||
break;
|
break;
|
||||||
if (q > buffer)
|
if (q > buffer)
|
||||||
*q++ = ' ';
|
*q++ = ' ';
|
||||||
|
|||||||
Reference in New Issue
Block a user