mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
doubled size of client's filter buffer (fixes #2045)
This commit is contained in:
parent
3e06c59196
commit
84c6f6b6f3
@ -241,6 +241,7 @@ Toerless Eckert
|
||||
for converting suspend.dat into proper PES format
|
||||
for investigating and fixing problems caused by filter streaming
|
||||
for fixing TimedWrite() so it doesn't fail after a slow but successful write
|
||||
for suggesting to double the size of client's filter buffer
|
||||
|
||||
Tomasz Maciej Nowak
|
||||
for providing Polish language texts
|
||||
|
1
HISTORY
1
HISTORY
@ -1,6 +1,7 @@
|
||||
VDR Plugin 'streamdev' Revision History
|
||||
---------------------------------------
|
||||
|
||||
- doubled size of client's filter buffer (suggested by Toerless Eckert)
|
||||
- make sure TimedWrite(...) doesn't return failure after a slow but successful
|
||||
write operation (thanks to Toerless Eckert)
|
||||
- fixed problems related to VTP filter streaming like ringbuffer overflows,
|
||||
|
@ -18,7 +18,7 @@ static int FilterSockBufSize_warn = 0;
|
||||
|
||||
class cStreamdevFilter: public cListObject {
|
||||
private:
|
||||
uchar m_Buffer[4096];
|
||||
uchar m_Buffer[8192];
|
||||
int m_Used;
|
||||
int m_Pipe[2];
|
||||
u_short m_Pid;
|
||||
|
Loading…
x
Reference in New Issue
Block a user