drmp3_uint32samplesRead=drmp3dec_decode_frame(&pMP3->decoder,pMP3->pData,(int)pMP3->dataSize,pMP3->frames,&info);// <-- Safe size_t -> int conversion thanks to the check above.
drmp3_uint32samplesRead=drmp3dec_decode_frame(&pMP3->decoder,pMP3->pData,(int)pMP3->dataSize,(drmp3d_sample_t*)pMP3->frames,&info);// <-- Safe size_t -> int conversion thanks to the check above.