client compatibility with VDR 2.3.1 (refs #2243)

This commit is contained in:
Frank Schmirler 2015-10-05 01:02:13 +02:00
parent fc52e920ad
commit d66c635a80
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,7 @@
VDR Plugin 'streamdev' Revision History
---------------------------------------
- client compatibility with VDR 2.3.1
- use cReceiver::SetPriority(...) in VDR 2.1.4+
- doubled size of client's filter buffer (suggested by Toerless Eckert)
- make sure TimedWrite(...) doesn't return failure after a slow but successful

View File

@ -219,9 +219,8 @@ int cStreamdevFilters::OpenFilter(u_short Pid, u_char Tid, u_char Mask) {
cStreamdevFilter *f = new cStreamdevFilter(Pid, Tid, Mask);
int fh = f->ReadPipe();
Lock();
LOCK_THREAD;
Add(f);
Unlock();
return fh;
}