search for: rchannel

Displaying 2 results from an estimated 2 matches for "rchannel".

Did you mean: channel
2005 Sep 30
2
Reg. FLAC decoding
..._Decoder); pThis->m_AudioSettings.PcmCdaParams.BitsPerSample = BitsPerSample; pThis->m_AudioSettings.PcmCdaParams.SamplingFrequency = FLAC__seekable_stream_decoder_get_sample_rate (pThis->m_Decoder); pThis->ApplyAudioDecoderSettingsOnTheFly (); unsigned char *LChannel, *RChannel; unsigned int RPos, LPos; LChannel = RChannel = (unsigned char *)buffer[0]; if (Channels > 1) RChannel = (unsigned char *)buffer[1]; BytesPerSample = BitsPerSample >> 3; LPos = RPos = 0; /* Copy the decoded audio data to the DMA buffer. We have to * interleave the chan...
2005 Sep 30
0
Re: Reg. FLAC decoding
...Settings.PcmCdaParams.BitsPerSample = BitsPerSample; > pThis->m_AudioSettings.PcmCdaParams.SamplingFrequency = > FLAC__seekable_stream_decoder_get_sample_rate > (pThis->m_Decoder); > pThis->ApplyAudioDecoderSettingsOnTheFly (); > > unsigned char *LChannel, *RChannel; > unsigned int RPos, LPos; > > LChannel = RChannel = (unsigned char *)buffer[0]; > if (Channels > 1) > RChannel = (unsigned char *)buffer[1]; > > BytesPerSample = BitsPerSample >> 3; > LPos = RPos = 0; > > /* Copy the decoded audio data to...