Displaying 1 result from an estimated 1 matches for "circularbufferend".
2001 Feb 27
1
Winamp plugin; http streaming
...X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 5.50.4133.2400
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400
Changing this line from httpstream.c in the BufferThread function:
bytesRead =3D recv(pThreadData->tcpSocket, pThreadData->circularBuffer + =
pThreadData->circularBufferEnd, 1, 0);
to read as follows:
bytesRead =3D recv(pThreadData->tcpSocket, pThreadData->circularBuffer + =
pThreadData->circularBufferEnd, bytesToRead, 0);
peeds up streaming noticeably, as the plug-in doesn't spend half the =
time streaming in the file 1 byte at a time.
Comments are a...