mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
Don't abort externremux when internal read buffer is empty
This commit is contained in:
parent
58f0348578
commit
dd556ee7fd
1
HISTORY
1
HISTORY
@ -1,6 +1,7 @@
|
||||
VDR Plugin 'streamdev' Revision History
|
||||
---------------------------------------
|
||||
|
||||
- Don't abort externremux when internal read buffer is empty
|
||||
- Implemented remuxing of recordings
|
||||
- Make ChannelChange retune only if CA IDs changed (thanks to Oliver Wagner)
|
||||
- Implemented VDR 2.1.4 cStatus::ChannelChange(...)
|
||||
|
@ -303,7 +303,7 @@ void cTSExt::Action(void)
|
||||
dsyslog("streamdev-server: buffer full while reading from externremux");
|
||||
|
||||
if (result == -1) {
|
||||
if (errno != EINTR) {
|
||||
if (errno != EINTR && errno != EAGAIN) {
|
||||
LOG_ERROR_STR("read failed");
|
||||
m_Active = false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user