Displaying 2 results from an estimated 2 matches for "m_position".
Did you mean:
__position
2005 Sep 30
2
Reg. FLAC decoding
...leave the channels. When the DMA buffer is full, we've to
* send it to the chip. And once the data is sent, we'll clear the
* buffer up */
while (1)
{
/* If the 1MB buffer becomes., full we'll have to send it out
* to the chip and create a new buffer */
if ((pThis->m_Position + (BytesPerSample * 2)) < 0x100000)
{
short * TempDest =
(short*)(&pThis->m_TempBuffer[pThis->m_Position]);
short * TempSource = (short *)&LChannel[LPos];
*TempDest = *TempSource;
TempSource = (short *)&RChannel[RPos];
TempDest ++;
*TempDest = *TempSou...
2005 Sep 30
0
Re: Reg. FLAC decoding
...ll, we've to
> * send it to the chip. And once the data is sent, we'll clear the
> * buffer up */
>
> while (1)
> {
>
> /* If the 1MB buffer becomes., full we'll have to send it out
> * to the chip and create a new buffer */
> if ((pThis->m_Position + (BytesPerSample * 2)) < 0x100000)
> {
> short * TempDest =
> (short*)(&pThis->m_TempBuffer[pThis->m_Position]);
>
> short * TempSource = (short *)&LChannel[LPos];
>
> *TempDest = *TempSource;
> TempSource = (short *)&RChannel[RPos];...