speed of =BASS_RecordStart

Started by juelin,

juelin

Hello,
I'm wrtting a program which recording FAX Weatherpictures from satellit.
The boudrate is 120
I receive the audiosignal from my tranceiver (137,1 MHz FM).
My input is
              ChannelInput:=BASS_RecordStart(0,2,0,@RecordingCallback,nil);
the routine               ChannelInput:=BASS_RecordStart(0,2,0,@RecordingCallback,nil);
calls the BASS.dll ca. every 100ms.
But it is not enough.
It is possible to change the call of  RecordingCallback to 10ms?
kind regards
Jürgen



Ian @ un4seen

You can request a shorter period via the HIWORD of the BASS_RecordStart "flags" parameter. For example:

ChannelInput:=BASS_RecordStart(0,2,MAKELONG(0,10),@RecordingCallback,nil);

Please see the BASS_RecordStart documentation for details.