Question about waveInGetPosition
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
The system function call waveInGetPosition retrieves the current input position of the given waveform-audio input device. The function call returns the position in the parameter MMTIME in the given format. (if possible) In my application I use the TIME_SAMPLES format wich specifies the current position in an offset in samples since the last time the waveform-audio input device was reset. My question is: What would happen if a recording gets to long (nSamples>(2^32)-1). I think it just simply wraps around the current position but I am not sure about this. (I have never tried) And it would take me about 12 hours to figure out by myself. (4294967296/96000/3600=12.43) :zzz: Thanks. :)