Displaying 2 results from an estimated 2 matches for "systemtext".
2005 Sep 30
2
Reg. FLAC decoding
...el[RPos];
TempDest ++;
*TempDest = *TempSource;
LPos = LPos + BytesPerSample;
RPos = RPos + BytesPerSample;
pThis->m_Position = pThis->m_Position + (BytesPerSample<<1);
if ((LPos >frame->header.blocksize) ||
(RPos >frame->header.blocksize))
{
SystemText ("Huge buffer : %d", pThis->m_Position);
break;
}
continue;
}
SystemText ("The huge buffer is full. Now playing it.");
unsigned int val = pThis->m_Position;
unsigned int pos = 0;
while (1)
{
unsigned int size;
while ( RUAGetBuffer ((RMuint8 *)&...
2005 Sep 30
0
Re: Reg. FLAC decoding
...mpSource;
>
> LPos = LPos + BytesPerSample;
> RPos = RPos + BytesPerSample;
> pThis->m_Position = pThis->m_Position + (BytesPerSample<<1);
>
> if ((LPos >frame->header.blocksize) ||
> (RPos >frame->header.blocksize))
> {
> SystemText ("Huge buffer : %d", pThis->m_Position);
> break;
> }
> continue;
> }
>
> SystemText ("The huge buffer is full. Now playing it.");
> unsigned int val = pThis->m_Position;
> unsigned int pos = 0;
> while (1)
> {
> u...