<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Sat, Mar 8, 2014 at 7:49 AM, ๋มาษอฯื ๒ฯฤษฯฮ <span dir="ltr">&lt;<a href="mailto:rodionkarimov@yandex.ru" target="_blank">rodionkarimov@yandex.ru</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">I create FLAC file decoding, processing and playing program and have the following question : how to convert FLAC 16 bit file data to 32 bit float buffer for CPU processing? I&#39;ve already inplemented sound playing and tested it with sine wave - it works without problems; I even made writing into decoding buffer values of sine wave, instead of decoded FLAC file data, and it also works without problems; now I try different approaches to convert FLAC 16 bits sound data to 32 bits float CPU buffer, but they give noise or sound with artefacts. I use Stream Decoder from FLAC C API and my write_callback is as follows :<br>
</blockquote><div><br></div><div>I&#39;ve used code like the following to convert decoded FLAC to normalized floating point audio in the interval [-1,1):</div><div><br></div><div><div>float scaleFactor = (1L &lt;&lt; ((((frame-&gt;header.bits_per_sample + 7) / 8) * 8) - 1));<br>
</div><div>for(unsigned channel = 0; channel &lt; frame-&gt;header.channels; ++channel) {<br></div><div><span class="" style="white-space:pre">        </span>float *floatBuffer = /* target output channel buffer from somewhere */</div>
<div><span class="" style="white-space:pre">        </span>for(unsigned sample = 0; sample &lt; frame-&gt;header.blocksize; ++sample)</div><div><span class="" style="white-space:pre">                </span>*floatBuffer++ = buffer[channel][sample] / scaleFactor;</div>
<div>}<br></div></div><div><br></div><div>If you don&#39;t want to normalize the audio you can just remove the division. šYou&#39;re obviously on Windows but on Mac OS X this can be done efficiently using the Accelerate framework&#39;s vDSP_vflt16() and vDSP_vsdiv(). šI&#39;m sure there are comparable routines you could use if the above method is too slow.</div>
<div><br></div><div>Stephenš</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<br>
FLAC__StreamDecoderWriteStatus write_callback ( const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void * client_data ) {<br>
š size_t š š š š š š š š š š š š š š š ši;<br>
<br>
š BYTE * š š š š š š š š š š š š š š š šChannelDataBuffer;<br>
š WORD * š š š š š š š š š š š š š š š šWORDChannelDataBuffer;<br>
š DWORD * š š š š š š š š š š š š š š š DWORDChannelDataBuffer;<br>
š int * š š š š š š š š š š š š š š š š IntChannelDataBuffer;<br>
<br>
<br>
<br>
š if ( bps == 16 ) {<br>
š š ChannelDataBuffer š š š š š š š š š = ( BYTE * ) buffer [ 0 ];<br>
š š WORDChannelDataBuffer š š š š š š š = ( WORD * ) buffer [ 0 ];<br>
š š DWORDChannelDataBuffer š š š š š š š= ( DWORD * ) buffer [ 0 ];<br>
š š IntChannelDataBuffer š š š š š š š š= ( int * ) buffer [ 0 ];<br>
<br>
š š for ( i = 0; i &lt; frame -&gt; header.blocksize; i++ ) {<br>
š š š //FloatFLACDecodingData.LOut [ FloatFLACDecodingData.WriteAddress + i ] š š š š š š š š š š š š = ( 1.0f + ( float ) sin ( ( ( double ) ( FloatFLACDecodingData.WriteAddress + i ) / ( double ) TABLE_SIZE ) * M_PI * 2.0 * 1.0 ) ) * 0.4f;<br>

š š š //FloatFLACDecodingData.LOut [ FloatFLACDecodingData.WriteAddress + i ] š š š š š š š š š š š š = float ( ( FLAC__int16 ) buffer [ 0 ] [ i ] ) * 65535.0f;<br>
š š š //FloatFLACDecodingData.LOut [ FloatFLACDecodingData.WriteAddress + i ] š š š š š š š š š š š š = ( float ( ( FLAC__int16 ) buffer [ 0 ] [ i ] ) / 65535.0f - 0.5f ) * 2.0f;<br>
š š š //FloatFLACDecodingData.LOut [ FloatFLACDecodingData.WriteAddress + i ] š š š š š š š š š š š š = ( float ( _byteswap_ushort ( ( FLAC__int16 ) buffer [ 0 ] [ i ] ) ) / 65535.0f - 0.5f ) * 2.0f;<br>
<br>
š š š //FloatFLACDecodingData.LOut [ FloatFLACDecodingData.WriteAddress + i ] š š š š š š š š š š š š = ( float ( WORDChannelDataBuffer [ i ] ) / 65535.0f - 0.5f ) * 2.0f;<br>
š š š //FloatFLACDecodingData.LOut [ FloatFLACDecodingData.WriteAddress + i ] š š š š š š š š š š š š = ( float ( _byteswap_ushort ( WORDChannelDataBuffer [ i ] ) ) / 65535.0f - 0.5f ) * 2.0f;<br>
š š š FloatFLACDecodingData.LOut [ FloatFLACDecodingData.WriteAddress + i ] š š š š š š š š š š š š = ( float ( DWORDChannelDataBuffer [ i ] ) / 65535.0f - 0.5f ) * 2.0f;<br>
š š š //FloatFLACDecodingData.LOut [ FloatFLACDecodingData.WriteAddress + i ] š š š š š š š š š š š š = ( float ( _byteswap_ulong ( DWORDChannelDataBuffer [ i ] ) ) / 65535.0f - 0.5f ) * 2.0f;<br>
<br>
š š š //FloatFLACDecodingData.LOut [ FloatFLACDecodingData.WriteAddress + i ] š š š š š š š š š š š š = ( float ( IntChannelDataBuffer [ i ] ) / 65535.0f - 0.5f ) * 2.0f;<br>
<br>
š š } //-for<br>
<br>
š š FloatFLACDecodingData.WriteAddress š= FloatFLACDecodingData.WriteAddress + frame -&gt; header.blocksize;<br>
<br>
š }<br>
<br>
š return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;<br>
<br>
}<br>
<br>
<br>
<br>
The closes results are with looking on buffer variable as DWORDChannelDataBuffer ( IntChannelDataBuffer and ( FLAC__int16 ) buffer [ 0 ] [ i ] give the same results ), but this approach anyway gives wrong sound - it is somehow to sharp and bright with some &quot;hard edges&quot;; other approaches give very strong noise and some of them give total mess. So, how to convert FLAC 16 bit data into 32 bits float data for CPU buffer, so that it will work in C ++ ?<br>

_______________________________________________<br>
flac-dev mailing list<br>
<a href="mailto:flac-dev@xiph.org">flac-dev@xiph.org</a><br>
<a href="http://lists.xiph.org/mailman/listinfo/flac-dev" target="_blank">http://lists.xiph.org/mailman/listinfo/flac-dev</a><br>
</blockquote></div><br></div></div>