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.
|
||||
|
||||
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
|
||||
supported, but a file delay must be selected individually to prevent
|
||||
VDR's transfer buffer over/underflow. Therefore the file input should be
|
||||
considered as a testing feature only.
|
||||
and unicast HTTP MPEG1/2, H.264 and H.265 transport streams. Also a file
|
||||
input method is supported, but a file delay must be selected individually
|
||||
to prevent VDR's transfer buffer over/underflow. Therefore the file input
|
||||
should be considered as a testing feature only.
|
||||
|
||||
IPTV plugin also features a support for external streaming applications.
|
||||
With proper helper applications and configuration IPTV plugin is able to
|
||||
display not only MPEG1/2 transport streams but also other formats like
|
||||
MP3 radio streams, mms video streams and so on.
|
||||
display not only MPEG1/2, H.264 and H.265 transport streams but also other
|
||||
formats like MP3 radio streams, mms video streams and so on.
|
||||
|
||||
Installation:
|
||||
|
||||
|
||||
2
setup.c
2
setup.c
@@ -192,7 +192,7 @@ void cIptvPluginSetup::StoreFilters(const char *nameP, int *valuesP)
|
||||
char *q = buffer;
|
||||
for (int i = 0; i < SECTION_FILTER_TABLE_SIZE; ++i) {
|
||||
char s[3];
|
||||
if (valuesP[i] < 0)
|
||||
if ((valuesP[i] < 0) || (valuesP[i] >= SECTION_FILTER_TABLE_SIZE))
|
||||
break;
|
||||
if (q > buffer)
|
||||
*q++ = ' ';
|
||||
|
||||
Reference in New Issue
Block a user