1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189 |
- /* SoundRecorder.cpp
- *
- * Copyright (C) 1992-2018 Paul Boersma
- *
- * This code is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or (at
- * your option) any later version.
- *
- * This code is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- * See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this work. If not, see <http://www.gnu.org/licenses/>.
- */
- /* Linux code originally by Darryl Purnell, Pretoria */
- /* GTK conversion includes work by Franz Brauße */
- /* This source file describes interactive sound recorders for the following systems:
- * MacOS
- * Linux
- * Windows
- * Because the behaviour of these sound recorders is partly similar, partly different,
- * this would seem a good candidate for object-oriented programming
- * (one audio manager and several audio drivers).
- * However, the places where sound recorders are similar and where they are different,
- * are hard to predict. For this reason, everything is done with platform #ifdefs.
- */
- #include <errno.h>
- #include "SoundRecorder.h"
- #include "Sound_and_Spectrum.h"
- #include "machine.h"
- #include "EditorM.h"
- #if defined (macintosh)
- #include "pa_mac_core.h"
- #endif
- #include "enums_getText.h"
- #include "SoundRecorder_enums.h"
- #include "enums_getValue.h"
- #include "SoundRecorder_enums.h"
- Thing_implement (SoundRecorder, Editor, 0);
- #include "prefs_define.h"
- #include "SoundRecorder_prefs.h"
- #include "prefs_install.h"
- #include "SoundRecorder_prefs.h"
- #include "prefs_copyToInstance.h"
- #include "SoundRecorder_prefs.h"
- static struct {
- int bufferSizeInMegabytes;
- } preferences;
- void SoundRecorder_preferences () {
- Preferences_addInt (U"SoundRecorder.bufferSizeInMegabytes", & preferences.bufferSizeInMegabytes, 60);
- }
- int SoundRecorder_getBufferSizePref_MB () { return preferences.bufferSizeInMegabytes; }
- void SoundRecorder_setBufferSizePref_MB (int size) { preferences.bufferSizeInMegabytes = size < 1 ? 1 : size > 1000 ? 1000: size; }
- #define step 1000
- /* For those systems that do not have a pollable audio control panel, */
- /* the settings are saved only here, so that they are remembered across */
- /* subsequent creations of a SoundRecorder. Also, this is then the way */
- /* in which two simultaneously open SoundRecorders would communicate. */
- static struct {
- int inputSource; // 1 = microphone, 2 = line, 3 = digital
- int leftGain, rightGain; // 0..255
- double sampleRate;
- } theControlPanel =
- #if defined (linux)
- { 1, 200, 200, 44100 };
- #elif defined (macintosh)
- { 1, 26, 26, 44100 };
- #else
- { 1, 26, 26, 44100 };
- #endif
- /********** ERROR HANDLING **********/
- #if defined (_WIN32)
- static void win_fillFormat (SoundRecorder me) {
- my waveFormat. nSamplesPerSec = (int) theControlPanel. sampleRate;
- my waveFormat. nChannels = my numberOfChannels;
- my waveFormat. wFormatTag = WAVE_FORMAT_PCM;
- my waveFormat. wBitsPerSample = 16;
- my waveFormat. nBlockAlign = my waveFormat. nChannels * my waveFormat. wBitsPerSample / 8;
- my waveFormat. nAvgBytesPerSec = my waveFormat. nBlockAlign * my waveFormat. nSamplesPerSec;
- my waveFormat. cbSize = 0;
- }
- static void win_fillHeader (SoundRecorder me, int which) {
- my waveHeader [which]. dwFlags = 0;
- my waveHeader [which]. lpData = which == 0 ? (char *) my buffer : which == 1 ? (char *) my buffertje1: (char *) my buffertje2;
- my waveHeader [which]. dwBufferLength = which == 0 ? my nmax * my waveFormat. nChannels * 2 : 1000 * my waveFormat. nChannels * 2;
- my waveHeader [which]. dwLoops = 0;
- my waveHeader [which]. lpNext = nullptr;
- my waveHeader [which]. reserved = 0;
- }
- static void win_waveInCheck (SoundRecorder me) {
- wchar_t messageText [MAXERRORLENGTH];
- MMRESULT err;
- if (my err == MMSYSERR_NOERROR) return;
- err = waveInGetErrorText (my err, messageText, MAXERRORLENGTH);
- if (err == MMSYSERR_NOERROR) Melder_throw (Melder_peekWto32 (messageText));
- else if (err == MMSYSERR_BADERRNUM) Melder_throw (U"Error number ", my err, U" out of range.");
- else if (err == MMSYSERR_NODRIVER) Melder_throw (U"No sound driver present.");
- else if (err == MMSYSERR_NOMEM) Melder_throw (U"Out of memory.");
- else Melder_throw (U"Unknown sound error.");
- }
- static void win_waveInOpen (SoundRecorder me) {
- try {
- my err = waveInOpen (& my hWaveIn, WAVE_MAPPER, & my waveFormat, 0, 0, CALLBACK_NULL);
- win_waveInCheck (me);
- if (Melder_debug != 8) waveInReset (my hWaveIn);
- } catch (MelderError) {
- Melder_throw (U"Audio input not opened.");
- }
- }
- static void win_waveInPrepareHeader (SoundRecorder me, int which) {
- try {
- my err = waveInPrepareHeader (my hWaveIn, & my waveHeader [which], sizeof (WAVEHDR));
- win_waveInCheck (me);
- } catch (MelderError) {
- Melder_throw (U"Audio input: cannot prepare header.\nQuit some other programs or go to \"Sound input prefs\" in the Preferences menu.");
- }
- }
- static void win_waveInAddBuffer (SoundRecorder me, int which) {
- try {
- my err = waveInAddBuffer (my hWaveIn, & my waveHeader [which], sizeof (WAVEHDR));
- win_waveInCheck (me);
- } catch (MelderError) {
- Melder_throw (U"Audio input: cannot add buffer.");
- }
- }
- static void win_waveInStart (SoundRecorder me) {
- try {
- my err = waveInStart (my hWaveIn); // asynchronous
- win_waveInCheck (me);
- } catch (MelderError) {
- Melder_throw (U"Audio input not started.");
- }
- }
- static void win_waveInStop (SoundRecorder me) {
- try {
- my err = waveInStop (my hWaveIn);
- win_waveInCheck (me);
- } catch (MelderError) {
- Melder_throw (U"Audio input not stopped.");
- }
- }
- static void win_waveInReset (SoundRecorder me) {
- try {
- my err = waveInReset (my hWaveIn);
- win_waveInCheck (me);
- } catch (MelderError) {
- Melder_throw (U"Audio input not reset.");
- }
- }
- static void win_waveInUnprepareHeader (SoundRecorder me, int which) {
- try {
- my err = waveInUnprepareHeader (my hWaveIn, & my waveHeader [which], sizeof (WAVEHDR));
- win_waveInCheck (me);
- } catch (MelderError) {
- Melder_throw (U"Audio input: cannot unprepare header.");
- }
- }
- static void win_waveInClose (SoundRecorder me) {
- try {
- my err = waveInClose (my hWaveIn);
- my hWaveIn = 0;
- win_waveInCheck (me);
- } catch (MelderError) {
- Melder_throw (U"Audio input not closed.");
- }
- }
- #endif
- static void stopRecording (SoundRecorder me) {
- if (! my recording) return;
- try {
- my recording = false;
- if (! my synchronous) {
- if (my inputUsesPortAudio) {
- Pa_StopStream (my portaudioStream);
- Pa_CloseStream (my portaudioStream);
- my portaudioStream = nullptr;
- } else {
- #if defined (_WIN32)
- /*
- * On newer systems, waveInStop waits until the buffer is full.
- * Wrong behaviour!
- * Therefore, we call waveInReset instead.
- * But on these same newer systems, waveInReset causes the dwBytesRecorded
- * attribute to go to zero, so we cannot do
- * my nsamp = my waveHeader [0]. dwBytesRecorded / (sizeof (short) * my numberOfChannels);
- */
- MMTIME mmtime;
- mmtime. wType = TIME_BYTES;
- my nsamp = 0;
- if (waveInGetPosition (my hWaveIn, & mmtime, sizeof (MMTIME)) == MMSYSERR_NOERROR)
- my nsamp = mmtime. u.cb / (sizeof (short) * my numberOfChannels);
- win_waveInReset (me);
- if (my nsamp == 0)
- my nsamp = my waveHeader [0]. dwBytesRecorded / (sizeof (short) * my numberOfChannels);
- if (my nsamp > my nmax)
- my nsamp = my nmax;
- win_waveInUnprepareHeader (me, 0);
- win_waveInClose (me);
- #endif
- }
- }
- } catch (MelderError) {
- Melder_flushError (U"Cannot stop recording.");
- }
- Graphics_setWindow (my graphics.get(), 0.0, 1.0, 0.0, 1.0);
- Graphics_setColour (my graphics.get(), Graphics_WHITE);
- Graphics_fillRectangle (my graphics.get(), 0.0, 1.0, 0.0, 1.0);
- }
- void structSoundRecorder :: v_destroy () noexcept {
- stopRecording (this); // must occur before freeing our buffer
- MelderAudio_stopPlaying (MelderAudio_IMPLICIT); // must also occur before freeing our buffer
- #if cocoa
- if (our d_cocoaTimer) CFRunLoopTimerInvalidate (our d_cocoaTimer);
- #elif gtk
- g_idle_remove_by_data (this);
- #elif motif
- if (our workProcId) XtRemoveWorkProc (our workProcId);
- #endif
- NUMvector_free (our buffer, 0);
- if (our inputUsesPortAudio) {
- if (our portaudioStream) Pa_StopStream (our portaudioStream);
- if (our portaudioStream) Pa_CloseStream (our portaudioStream);
- } else {
- #if defined (_WIN32)
- if (our hWaveIn != 0) {
- waveInReset (our hWaveIn);
- waveInUnprepareHeader (our hWaveIn, & our waveHeader [0], sizeof (WAVEHDR));
- waveInClose (our hWaveIn);
- }
- #elif defined (macintosh)
- #elif defined (UNIX)
- if (our fd != -1) close (our fd);
- #endif
- }
- our SoundRecorder_Parent :: v_destroy ();
- }
- static void showMaximum (SoundRecorder me, int channel, double maximum) {
- maximum /= 32768.0;
- Graphics_setWindow (my graphics.get(),
- my numberOfChannels == 1 || channel == 1 ? 0.0 : -1.0,
- my numberOfChannels == 1 || channel == 2 ? 1.0 : 2.0,
- -0.1, 1.1);
- Graphics_setGrey (my graphics.get(), 0.9);
- Graphics_fillRectangle (my graphics.get(), 0.0, 1.0, maximum, 1.0);
- Graphics_setColour (my graphics.get(), Graphics_GREEN);
- if (maximum < 0.75) {
- Graphics_fillRectangle (my graphics.get(), 0.0, 1.0, 0.0, maximum);
- } else {
- Graphics_fillRectangle (my graphics.get(), 0.0, 1.0, 0.0, 0.75);
- Graphics_setColour (my graphics.get(), Graphics_YELLOW);
- if (maximum < 0.92) {
- Graphics_fillRectangle (my graphics.get(), 0.0, 1.0, 0.75, maximum);
- } else {
- Graphics_fillRectangle (my graphics.get(), 0.0, 1.0, 0.75, 0.92);
- Graphics_setColour (my graphics.get(), Graphics_RED);
- Graphics_fillRectangle (my graphics.get(), 0.0, 1.0, 0.92, maximum);
- }
- }
- }
- static void showMeter (SoundRecorder me, short *buffer, integer nsamp) {
- Melder_assert (my graphics);
- if (nsamp < 1) {
- Graphics_setWindow (my graphics.get(), 0.0, 1.0, 0.0, 1.0);
- #if defined (macintosh)
- Graphics_setColour (my graphics.get(), Graphics_WHITE);
- Graphics_fillRectangle (my graphics.get(), 0.2, 0.8, 0.3, 0.7);
- #endif
- Graphics_setTextAlignment (my graphics.get(), Graphics_CENTRE, Graphics_HALF);
- Graphics_setColour (my graphics.get(), Graphics_BLACK);
- Graphics_text (my graphics.get(), 0.5, 0.5, U"Not recording.");
- return;
- }
- if (my p_meter_which == kSoundRecorder_meter::INTENSITY) {
- int leftMaximum = 0, rightMaximum = 0;
- if (my numberOfChannels == 1) {
- for (integer i = 0; i < nsamp; i ++) {
- int value = buffer [i];
- if (abs (value) > leftMaximum) leftMaximum = abs (value);
- }
- } else {
- for (integer i = 0; i < nsamp; i ++) {
- int left = buffer [i+i], right = buffer [i+i+1];
- if (abs (left) > leftMaximum) leftMaximum = abs (left);
- if (abs (right) > rightMaximum) rightMaximum = abs (right);
- }
- }
- if (my lastLeftMaximum > 30000) {
- int leak = my lastLeftMaximum - Melder_ifloor (2000000.0 / theControlPanel. sampleRate);
- if (leftMaximum < leak) leftMaximum = leak;
- }
- showMaximum (me, 1, leftMaximum);
- my lastLeftMaximum = leftMaximum;
- if (my numberOfChannels == 2) {
- if (my lastRightMaximum > 30000) {
- int leak = my lastRightMaximum - Melder_ifloor (2000000.0 / theControlPanel. sampleRate);
- if (rightMaximum < leak) rightMaximum = leak;
- }
- showMaximum (me, 2, rightMaximum);
- my lastRightMaximum = rightMaximum;
- }
- } else if (my p_meter_which == kSoundRecorder_meter::CENTRE_OF_GRAVITY_VERSUS_INTENSITY) {
- autoSound sound = Sound_create (my numberOfChannels,
- 0.0, nsamp / theControlPanel. sampleRate,
- nsamp, 1.0 / theControlPanel. sampleRate, 0.5 / theControlPanel. sampleRate);
- short *p = & buffer [0];
- for (integer isamp = 1; isamp <= nsamp; isamp ++) {
- for (integer ichan = 1; ichan <= my numberOfChannels; ichan ++) {
- sound -> z [ichan] [isamp] = * (p ++) / 32768.0;
- }
- }
- Sound_multiplyByWindow (sound.get(), kSound_windowShape::KAISER_2);
- double intensity = Sound_getIntensity_dB (sound.get());
- autoSpectrum spectrum = Sound_to_Spectrum (sound.get(), true);
- double centreOfGravity = Spectrum_getCentreOfGravity (spectrum.get(), 1.0);
- trace (nsamp, U" samples, intensity ", intensity, U" dB, centre of gravity ", centreOfGravity, U" Hz");
- Graphics_setWindow (my graphics.get(),
- my p_meter_centreOfGravity_minimum, my p_meter_centreOfGravity_maximum,
- my p_meter_intensity_minimum, my p_meter_intensity_maximum);
- Graphics_setColour (my graphics.get(), Graphics_WHITE);
- Graphics_fillRectangle (my graphics.get(),
- my p_meter_centreOfGravity_minimum, my p_meter_centreOfGravity_maximum,
- my p_meter_intensity_minimum, my p_meter_intensity_maximum);
- Graphics_setColour (my graphics.get(), Graphics_BLACK);
- Graphics_fillCircle_mm (my graphics.get(), centreOfGravity, intensity, 3.0);
- }
- Graphics_flushWs (my graphics.get());
- }
- static bool tooManySamplesInBufferToReturnToGui (SoundRecorder me) {
- (void) me;
- return false;
- }
- static integer getMyNsamp (SoundRecorder me) {
- volatile integer nsamp = my nsamp; // Prevent inlining.
- return nsamp;
- }
- #if cocoa
- #define WORKPROC_RETURN void
- #define WORKPROC_ARGS CFRunLoopTimerRef /*timer*/, void *void_SoundRecorder
- #elif gtk
- #define WORKPROC_RETURN gboolean
- #define WORKPROC_ARGS void *void_SoundRecorder
- #else
- #define WORKPROC_RETURN bool
- #define WORKPROC_ARGS void *void_SoundRecorder
- #endif
- static WORKPROC_RETURN workProc (WORKPROC_ARGS) {
- SoundRecorder me = static_cast <SoundRecorder> (void_SoundRecorder);
- try {
- short buffertje [step*2];
- int stepje = 0;
- #if defined (linux)
- #define min(a,b) a > b ? b : a
- #endif
- /* Determine global audio parameters (may have been changed by an external control panel):
- * 1. input source;
- * 2. left and right gain;
- * 3. sampling frequency.
- */
- if (my inputUsesPortAudio) {
- } else {
- }
- /* Set the buttons according to the audio parameters. */
- if (my recordButton) GuiThing_setSensitive (my recordButton, ! my recording);
- if (my stopButton) GuiThing_setSensitive (my stopButton, my recording);
- if (my playButton) GuiThing_setSensitive (my playButton, ! my recording && my nsamp > 0);
- if (my applyButton) GuiThing_setSensitive (my applyButton, ! my recording && my nsamp > 0);
- if (my okButton) GuiThing_setSensitive (my okButton, ! my recording && my nsamp > 0);
- if (my monoButton && my numberOfChannels == 1) GuiRadioButton_set (my monoButton);
- if (my stereoButton && my numberOfChannels == 2) GuiRadioButton_set (my stereoButton);
- for (integer i = 1; i <= SoundRecorder_IFSAMP_MAX; i ++)
- if (my fsamps [i]. button && theControlPanel. sampleRate == my fsamps [i]. fsamp)
- GuiRadioButton_set (my fsamps [i]. button);
- if (my devices [theControlPanel. inputSource]. button)
- GuiRadioButton_set (my devices [theControlPanel. inputSource]. button);
- if (my monoButton) GuiThing_setSensitive (my monoButton, ! my recording);
- if (my stereoButton) GuiThing_setSensitive (my stereoButton, ! my recording);
- for (integer i = 1; i <= SoundRecorder_IFSAMP_MAX; i ++)
- if (my fsamps [i]. button) {
- GuiThing_setSensitive (my fsamps [i]. button, ! my recording);
- }
- for (integer i = 1; i <= SoundRecorder_IDEVICE_MAX; i ++)
- if (my devices [i]. button)
- GuiThing_setSensitive (my devices [i]. button, ! my recording);
- /*Graphics_setGrey (my graphics, 0.9);
- Graphics_fillRectangle (my graphics, 0.0, 1.0, 0.0, 32768.0);
- Graphics_setGrey (my graphics, 0.9);
- Graphics_fillRectangle (my graphics, 0.0, 1.0, 0.0, 32768.0);*/
- if (my synchronous) {
- /*
- * Read some samples into 'buffertje'.
- */
- do {
- if (my inputUsesPortAudio) {
- /*
- * Asynchronous recording: do nothing.
- */
- } else {
- #if defined (macintosh) || defined (_WIN32)
- /*
- * Asynchronous recording on these systems: do nothing.
- */
- #else
- // linux
- if (my fd != -1)
- stepje = read (my fd, (void *) buffertje, step * (sizeof (short) * my numberOfChannels)) / (sizeof (short) * my numberOfChannels);
- #endif
- }
- if (my recording) {
- memcpy (my buffer + my nsamp * my numberOfChannels, buffertje, stepje * (sizeof (short) * my numberOfChannels));
- }
- showMeter (me, buffertje, stepje);
- if (my recording) {
- my nsamp += stepje;
- if (my nsamp > my nmax - step) my recording = false;
- GuiScale_setValue (my progressScale, 1000.0 * ((double) my nsamp / (double) my nmax));
- }
- } while (my recording && tooManySamplesInBufferToReturnToGui (me));
- } else {
- if (my recording) {
- /*
- * We have to know how far the buffer has been filled.
- * However, the buffer may be filled at interrupt time,
- * so that the buffer may be being filled during this workproc.
- * So we ask for the buffer filling just once, namely here at the beginning.
- */
- integer lastSample = 0;
- if (my inputUsesPortAudio) {
- /*
- * The buffer filling is contained in my nsamp,
- * which has been set during interrupt time and may again be updated behind our backs during this workproc.
- * So we do it in such a way that the compiler cannot ask for my nsamp twice.
- */
- lastSample = getMyNsamp (me);
- Pa_Sleep (10);
- } else {
- #if defined (_WIN32)
- MMTIME mmtime;
- mmtime. wType = TIME_BYTES;
- if (waveInGetPosition (my hWaveIn, & mmtime, sizeof (MMTIME)) == MMSYSERR_NOERROR)
- lastSample = mmtime. u.cb / (sizeof (short) * my numberOfChannels);
- #elif defined (macintosh)
- #endif
- }
- integer firstSample = lastSample - 3000;
- if (firstSample < 0) firstSample = 0;
- showMeter (me, my buffer + firstSample * my numberOfChannels, lastSample - firstSample);
- GuiScale_setValue (my progressScale, 1000.0 * ((double) lastSample / (double) my nmax));
- } else {
- showMeter (me, nullptr, 0);
- }
- }
- } catch (MelderError) {
- Melder_flushError ();
- }
- #if cocoa
- return;
- #elif gtk
- return true;
- #else
- return false;
- #endif
- }
- static int portaudioStreamCallback (
- const void *input, void * /* output */,
- unsigned long frameCount,
- const PaStreamCallbackTimeInfo* /* timeInfo */,
- PaStreamCallbackFlags /* statusFlags */,
- void *void_SoundRecorder)
- {
- /*
- * This procedure may be called at interrupt time.
- * It therefore accesses only data that is constant during recording,
- * namely me, my buffer, my numberOfChannels, and my nmax.
- * The only thing it changes is my nsamp;
- * the workProc will therefore have to take some care in accessing my nsamp (see there).
- */
- SoundRecorder me = static_cast <SoundRecorder> (void_SoundRecorder);
- if (Melder_debug == 20)
- Melder_casual (U"The PortAudio stream callback receives ", frameCount, U" frames.");
- Melder_assert (my nsamp <= my nmax);
- uinteger samplesLeft = my nmax - my nsamp;
- if (samplesLeft > 0) {
- uinteger dsamples = samplesLeft > frameCount ? frameCount : samplesLeft;
- if (Melder_debug == 20)
- Melder_casual (U"play ", dsamples, U" ", Pa_GetStreamCpuLoad (my portaudioStream));
- memcpy (my buffer + my nsamp * my numberOfChannels, input, 2 * dsamples * my numberOfChannels);
- my nsamp += dsamples;
- if (my nsamp >= my nmax) return paComplete;
- } else /*if (my nsamp >= my nmax)*/ {
- my nsamp = my nmax;
- return paComplete;
- }
- return paContinue;
- }
- static void gui_button_cb_record (SoundRecorder me, GuiButtonEvent /* event */) {
- try {
- if (my recording) return;
- my nsamp = 0;
- my recording = true;
- my lastLeftMaximum = 0;
- my lastRightMaximum = 0;
- if (! my synchronous) {
- if (my inputUsesPortAudio) {
- PaStreamParameters streamParameters = { };
- streamParameters. device = my deviceIndices [theControlPanel. inputSource];
- streamParameters. channelCount = my numberOfChannels;
- streamParameters. sampleFormat = paInt16;
- streamParameters. suggestedLatency = my deviceInfos [theControlPanel. inputSource] -> defaultLowInputLatency;
- #if defined (macintosh)
- PaMacCoreStreamInfo macCoreStreamInfo = { };
- macCoreStreamInfo. size = sizeof (PaMacCoreStreamInfo);
- macCoreStreamInfo. hostApiType = paCoreAudio;
- macCoreStreamInfo. version = 0x01;
- macCoreStreamInfo. flags = paMacCoreChangeDeviceParameters | paMacCoreFailIfConversionRequired;
- streamParameters. hostApiSpecificStreamInfo = & macCoreStreamInfo;
- #endif
- if (Melder_debug == 20)
- Melder_casual (U"Before Pa_OpenStream");
- PaError err = Pa_OpenStream (& my portaudioStream, & streamParameters, nullptr,
- theControlPanel. sampleRate, 0, paNoFlag, portaudioStreamCallback, (void *) me);
- if (Melder_debug == 20)
- Melder_casual (U"Pa_OpenStream returns ", (int) err);
- if (err)
- Melder_throw (U"open ", Melder_peek8to32 (Pa_GetErrorText (err)));
- Pa_StartStream (my portaudioStream);
- if (Melder_debug == 20)
- Melder_casual (U"Pa_StartStream returns ", (int) err);
- if (err)
- Melder_throw (U"start ", Melder_peek8to32 (Pa_GetErrorText (err)));
- } else {
- #if defined (_WIN32)
- win_fillFormat (me);
- win_fillHeader (me, 0);
- win_waveInOpen (me);
- win_waveInPrepareHeader (me, 0);
- win_waveInAddBuffer (me, 0);
- win_waveInStart (me);
- #elif defined (macintosh)
- #endif
- }
- }
- Graphics_setWindow (my graphics.get(), 0.0, 1.0, 0.0, 1.0);
- Graphics_setColour (my graphics.get(), Graphics_WHITE);
- Graphics_fillRectangle (my graphics.get(), 0.0, 1.0, 0.0, 1.0);
- } catch (MelderError) {
- Graphics_setWindow (my graphics.get(), 0.0, 1.0, 0.0, 1.0);
- Graphics_setColour (my graphics.get(), Graphics_WHITE);
- Graphics_fillRectangle (my graphics.get(), 0.0, 1.0, 0.0, 1.0);
- my recording = false;
- Melder_flushError (U"Cannot record.");
- }
- }
- static void gui_button_cb_stop (SoundRecorder me, GuiButtonEvent /* event */) {
- stopRecording (me);
- }
- static void gui_button_cb_play (SoundRecorder me, GuiButtonEvent /* event */) {
- if (my recording || my nsamp == 0) return;
- MelderAudio_play16 (my buffer, theControlPanel. sampleRate, my fakeMono ? my nsamp / 2 : my nsamp, my fakeMono ? 2 : my numberOfChannels, nullptr, nullptr);
- }
- static void publish (SoundRecorder me) {
- autoSound sound;
- integer nsamp = my fakeMono ? my nsamp / 2 : my nsamp;
- if (my nsamp == 0) return;
- double fsamp = theControlPanel. sampleRate;
- if (fsamp <= 0.0) fsamp = 44100.0; // safe
- try {
- sound = Sound_createSimple (my numberOfChannels, (double) nsamp / fsamp, fsamp);
- } catch (MelderError) {
- Melder_flushError (U"You can still save to file.");
- return;
- }
- if (my fakeMono) {
- for (integer i = 1; i <= nsamp; i ++)
- sound -> z [1] [i] = (my buffer [i + i - 2] + my buffer [i + i - 1]) * (1.0 / 65536);
- } else if (my numberOfChannels == 1) {
- for (integer i = 1; i <= nsamp; i ++)
- sound -> z [1] [i] = my buffer [i - 1] * (1.0 / 32768);
- } else {
- for (integer i = 1; i <= nsamp; i ++) {
- sound -> z [1] [i] = my buffer [i + i - 2] * (1.0 / 32768);
- sound -> z [2] [i] = my buffer [i + i - 1] * (1.0 / 32768);
- }
- }
- if (my soundName) {
- autostring32 name = GuiText_getString (my soundName);
- Thing_setName (sound.get(), name.get());
- }
- Editor_broadcastPublication (me, sound.move());
- }
- static void gui_button_cb_cancel (SoundRecorder me, GuiButtonEvent /* event */) {
- stopRecording (me);
- forget (me);
- }
- static void gui_button_cb_apply (SoundRecorder me, GuiButtonEvent /* event */) {
- stopRecording (me);
- publish (me);
- }
- static void gui_button_cb_ok (SoundRecorder me, GuiButtonEvent /* event */) {
- stopRecording (me);
- publish (me);
- forget (me);
- }
- static void initialize (SoundRecorder me) {
- try {
- if (my inputUsesPortAudio) {
- #if defined (macintoshXXX)
- my fsamps [SoundRecorder_IFSAMP_8000]. canDo = false;
- my fsamps [SoundRecorder_IFSAMP_11025]. canDo = false;
- my fsamps [SoundRecorder_IFSAMP_12000]. canDo = false;
- my fsamps [SoundRecorder_IFSAMP_16000]. canDo = false;
- my fsamps [SoundRecorder_IFSAMP_22050]. canDo = false;
- my fsamps [SoundRecorder_IFSAMP_24000]. canDo = false;
- my fsamps [SoundRecorder_IFSAMP_32000]. canDo = false;
- my fsamps [SoundRecorder_IFSAMP_64000]. canDo = false;
- #else
- // Accept all standard sample rates.
- (void) me;
- #endif
- } else {
- #if defined (macintosh)
- #elif defined (_WIN32)
- (void) me;
- #elif defined (linux) && ! defined (NO_AUDIO)
- int sampleRate = (int) theControlPanel. sampleRate, sampleSize = 16;
- int channels = my numberOfChannels, stereo = ( my numberOfChannels == 2 ), val;
- #if __BYTE_ORDER == __BIG_ENDIAN
- int format = AFMT_S16_BE;
- #else
- int format = AFMT_S16_LE;
- #endif
- int fd_mixer;
- my fd = open ("/dev/dsp", O_RDONLY);
- if (my fd == -1) {
- if (errno == EBUSY)
- Melder_throw (U"Audio device already in use.");
- else
- Melder_throw (U"Cannot open audio device.\n"
- U"Please switch on PortAudio in the Sound Recording Preferences.");
- }
- ioctl (my fd, SNDCTL_DSP_RESET, nullptr);
- ioctl (my fd, SNDCTL_DSP_SPEED, & sampleRate);
- ioctl (my fd, SNDCTL_DSP_SAMPLESIZE, & sampleSize);
- ioctl (my fd, SNDCTL_DSP_CHANNELS, (val = channels, & val));
- if (channels == 1 && val == 2) {
- close (my fd);
- Melder_throw (U"This sound card does not support mono.");
- }
- ioctl (my fd, SNDCTL_DSP_STEREO, & stereo);
- ioctl (my fd, SNDCTL_DSP_SETFMT, & format);
- fd_mixer = open ("/dev/mixer", O_WRONLY);
- if (fd_mixer == -1) {
- Melder_throw (U"Cannot open /dev/mixer.");
- } else {
- int dev_mask = theControlPanel. inputSource == 2 ? SOUND_MASK_LINE : SOUND_MASK_MIC;
- if (ioctl (fd_mixer, SOUND_MIXER_WRITE_RECSRC, & dev_mask) == -1) {
- close (fd_mixer);
- Melder_throw (U"Can't set recording device in mixer.");
- }
- close (fd_mixer);
- }
- #endif
- }
- } catch (MelderError) {
- Melder_throw (U"16-bit audio recording not initialized.");
- }
- }
- static void gui_radiobutton_cb_input (SoundRecorder me, GuiRadioButtonEvent event) {
- Melder_casual (U"SoundRecorder:"
- U" setting the input source from ", theControlPanel. inputSource,
- U" to ", event -> position, U".");
- theControlPanel. inputSource = event -> position;
- /* Set system's input source. */
- if (my inputUsesPortAudio) {
- // deferred to the start of recording
- } else {
- #if defined (_WIN32)
- // deferred to the start of recording
- #elif defined (macintosh)
- //SPBCloseDevice (my refNum);
- try {
- initialize (me);
- } catch (MelderError) {
- Melder_flushError ();
- }
- #elif defined (linux) && ! defined (NO_AUDIO)
- int fd_mixer = open ("/dev/mixer", O_WRONLY);
- if (fd_mixer == -1) {
- Melder_flushError (U"(Sound_record:) Cannot open /dev/mixer.");
- }
- int dev_mask = theControlPanel.inputSource == 2 ? SOUND_MASK_LINE : SOUND_MASK_MIC;
- if (ioctl (fd_mixer, SOUND_MIXER_WRITE_RECSRC, & dev_mask) == -1)
- Melder_flushError (U"(Sound_record:) Can't set recording device in mixer");
- close (fd_mixer);
- #endif
- }
- }
- static void gui_radiobutton_cb_fsamp (SoundRecorder me, GuiRadioButtonEvent event) {
- if (my recording) return;
- try {
- double fsamp = undefined;
- for (integer i = 1; i <= SoundRecorder_IFSAMP_MAX; i ++)
- if (event -> toggle == my fsamps [i]. button)
- fsamp = my fsamps [i]. fsamp;
- Melder_assert (isdefined (fsamp));
- /*
- * If we push the 48000 button while the sampling frequency is 22050,
- * we first get a message that the 22050 button has changed,
- * and then we get a message that the 48000 button has changed.
- * So the following will work (it used to be different with old Motif versions on Linux):
- */
- Melder_casual (U"SoundRecorder:"
- U" setting the sample rate from ", (integer) theControlPanel. sampleRate,
- U" to ", (integer) fsamp, U" Hz.");
- if (fsamp == theControlPanel. sampleRate) return;
- /*
- * Now we know, hopefully, that the message is from the button that was clicked,
- * not the one that was unset by the radio box, so we can take action.
- */
- theControlPanel. sampleRate = fsamp;
- /*
- * Set the system's sampling frequency.
- * On some systems, we cannot do this without closing the audio device,
- * and reopening it with a new sampling frequency.
- */
- if (my inputUsesPortAudio) {
- // deferred to the start of recording
- } else {
- #if defined (_WIN32)
- // deferred to the start of recording
- #elif defined (macintosh)
- //SPBCloseDevice (my refNum);
- initialize (me);
- #elif defined (linux) && ! defined (NO_AUDIO)
- close (my fd);
- initialize (me);
- #endif
- }
- } catch (MelderError) {
- Melder_throw (U"Sampling frequency not changed.");
- }
- }
- static void gui_drawingarea_cb_resize (SoundRecorder me, GuiDrawingArea_ResizeEvent event) {
- if (! my graphics) return; // could be the case in the very beginning
- Graphics_setWsViewport (my graphics.get(), 0, event -> width, 0, event -> height);
- Graphics_setWsWindow (my graphics.get(), 0, event -> width, 0, event -> height);
- Graphics_setViewport (my graphics.get(), 0, event -> width, 0, event -> height);
- Graphics_updateWs (my graphics.get());
- }
- void structSoundRecorder :: v_createChildren ()
- {
- /* Channels */
- integer y = 20 + Machine_getMenuBarHeight ();
- GuiLabel_createShown (our windowForm, 10, 160, y, y + Gui_LABEL_HEIGHT, U"Channels:", 0);
- GuiRadioGroup_begin ();
- y += Gui_RADIOBUTTON_HEIGHT + Gui_RADIOBUTTON_SPACING;
- our monoButton = GuiRadioButton_createShown (our windowForm, 20, 170, y, y + Gui_RADIOBUTTON_HEIGHT,
- U"Mono", nullptr, nullptr, 0);
- y += Gui_RADIOBUTTON_HEIGHT + Gui_RADIOBUTTON_SPACING;
- our stereoButton = GuiRadioButton_createShown (our windowForm, 20, 170, y, y + Gui_RADIOBUTTON_HEIGHT,
- U"Stereo", nullptr, nullptr, 0);
- GuiRadioGroup_end ();
- /* Input source */
-
- y = 140 + Machine_getMenuBarHeight ();
- #if defined (_WIN32)
- GuiLabel_createShown (our windowForm, 10, 170, y, y + Gui_LABEL_HEIGHT, U"(use Windows mixer", 0);
- y += Gui_LABEL_HEIGHT + 10;
- GuiLabel_createShown (our windowForm, 10, 170, y, y + Gui_LABEL_HEIGHT, U" without meters)", 0);
- #else
- GuiLabel_createShown (our windowForm, 10, 170, y, y + Gui_LABEL_HEIGHT, U"Input source:", 0);
- GuiRadioGroup_begin ();
- for (integer i = 1; i <= SoundRecorder_IDEVICE_MAX; i ++) {
- if (our devices [i]. canDo) {
- y += Gui_RADIOBUTTON_HEIGHT + Gui_RADIOBUTTON_SPACING;
- our devices [i]. button = GuiRadioButton_createShown (our windowForm, 20, 170, y, y + Gui_RADIOBUTTON_HEIGHT,
- our devices [i]. name, gui_radiobutton_cb_input, this, 0);
- }
- }
- GuiRadioGroup_end ();
- #endif
-
- /* Meter box */
-
- y = 20 + Machine_getMenuBarHeight ();
- GuiLabel_createShown (our windowForm, 170, -170, y, y + Gui_LABEL_HEIGHT, U"Meter", GuiLabel_CENTRE);
- y += Gui_LABEL_HEIGHT;
- our meter = GuiDrawingArea_createShown (our windowForm, 170, -170, y, -150,
- nullptr, nullptr, nullptr, gui_drawingarea_cb_resize, this, GuiDrawingArea_BORDER);
- /* Sampling frequency */
- y = 20 + Machine_getMenuBarHeight ();
- GuiLabel_createShown (our windowForm, -160, -10, y, y + Gui_LABEL_HEIGHT, U"Sampling frequency:", 0);
- GuiRadioGroup_begin ();
- for (integer i = 1; i <= SoundRecorder_IFSAMP_MAX; i ++) {
- if (our fsamps [i]. canDo) {
- double fsamp = our fsamps [i]. fsamp;
- y += Gui_RADIOBUTTON_HEIGHT + Gui_RADIOBUTTON_SPACING;
- our fsamps [i]. button = GuiRadioButton_createShown (our windowForm,
- -150, -10, y, y + Gui_RADIOBUTTON_HEIGHT,
- Melder_cat (fsamp == Melder_roundDown (fsamp) ? Melder_integer ((integer) fsamp) : Melder_fixed (fsamp, 5), U" Hz"),
- gui_radiobutton_cb_fsamp, this, fsamp == theControlPanel. sampleRate ? GuiRadioButton_SET : 0);
- }
- }
- GuiRadioGroup_end ();
- our progressScale = GuiScale_createShown (our windowForm,
- 10, 350, -130, -90,
- 0, 1000, 0, 0);
- y = 60;
- our recordButton = GuiButton_createShown (our windowForm, 20, 90, -y - Gui_PUSHBUTTON_HEIGHT, -y,
- U"Record", gui_button_cb_record, this, 0);
- our stopButton = GuiButton_createShown (our windowForm, 100, 170, -y - Gui_PUSHBUTTON_HEIGHT, -y,
- U"Stop", gui_button_cb_stop, this, 0);
- if (inputUsesPortAudio) {
- our playButton = GuiButton_createShown (our windowForm, 180, 250, -y - Gui_PUSHBUTTON_HEIGHT, -y,
- U"Play", gui_button_cb_play, this, 0);
- } else {
- #if defined (_WIN32) || defined (macintosh)
- our playButton = GuiButton_createShown (our windowForm, 180, 250, -y - Gui_PUSHBUTTON_HEIGHT, -y,
- U"Play", gui_button_cb_play, this, 0);
- #endif
- }
-
- GuiLabel_createShown (our windowForm, -200, -130, -y - 2 - Gui_TEXTFIELD_HEIGHT, -y - 2, U"Name:", GuiLabel_RIGHT);
- our soundName = GuiText_createShown (our windowForm, -120, -20, -y - 2 - Gui_TEXTFIELD_HEIGHT, -y - 2, 0);
- GuiText_setString (our soundName, U"untitled");
- y = 20;
- our cancelButton = GuiButton_createShown (our windowForm, -350, -280, -y - Gui_PUSHBUTTON_HEIGHT, -y,
- U"Close", gui_button_cb_cancel, this, 0);
- our applyButton = GuiButton_createShown (our windowForm, -270, -170, -y - Gui_PUSHBUTTON_HEIGHT, -y,
- U"Save to list", gui_button_cb_apply, this, GuiButton_DEFAULT);
- our okButton = GuiButton_createShown (our windowForm, -160, -20, -y - Gui_PUSHBUTTON_HEIGHT, -y,
- U"Save to list & Close", gui_button_cb_ok, this, 0);
- }
- static void writeFakeMonoFile (SoundRecorder me, MelderFile file, int audioFileType) {
- integer nsamp = my nsamp / 2;
- autoMelderFile mfile = MelderFile_create (file);
- MelderFile_writeAudioFileHeader (file, audioFileType, Melder_iround (theControlPanel. sampleRate), nsamp, 1, 16);
- if (Melder_defaultAudioFileEncoding (audioFileType, 16) == Melder_LINEAR_16_BIG_ENDIAN) {
- for (integer i = 0; i < nsamp; i ++)
- binputi16 ((my buffer [i + i - 2] + my buffer [i + i - 1]) / 2, file -> filePointer);
- } else {
- for (integer i = 0; i < nsamp; i ++)
- binputi16LE ((my buffer [i + i - 2] + my buffer [i + i - 1]) / 2, file -> filePointer);
- }
- MelderFile_writeAudioFileTrailer (file, audioFileType, Melder_iround (theControlPanel. sampleRate), nsamp, 1, 16);
- mfile.close ();
- }
- static void writeAudioFile (SoundRecorder me, MelderFile file, int audioFileType) {
- try {
- if (my fakeMono) {
- writeFakeMonoFile (me, file, audioFileType);
- } else {
- MelderFile_writeAudioFile (file, audioFileType, my buffer, Melder_iround (theControlPanel. sampleRate), my nsamp, my numberOfChannels, 16);
- }
- } catch (MelderError) {
- Melder_throw (U"Audio file not written.");
- }
- }
- static void menu_cb_writeWav (SoundRecorder me, EDITOR_ARGS_FORM) {
- EDITOR_FORM_SAVE (U"Save as WAV file", nullptr)
- autostring32 name = GuiText_getString (my soundName);
- Melder_sprint (defaultName,300, name.get(), U".wav");
- EDITOR_DO_SAVE
- writeAudioFile (me, file, Melder_WAV);
- EDITOR_END
- }
- static void menu_cb_writeAifc (SoundRecorder me, EDITOR_ARGS_FORM) {
- EDITOR_FORM_SAVE (U"Save as AIFC file", nullptr)
- autostring32 name = GuiText_getString (my soundName);
- Melder_sprint (defaultName,300, name.get(), U".aifc");
- EDITOR_DO_SAVE
- writeAudioFile (me, file, Melder_AIFC);
- EDITOR_END
- }
- static void menu_cb_writeNextSun (SoundRecorder me, EDITOR_ARGS_FORM) {
- EDITOR_FORM_SAVE (U"Save as NeXT/Sun file", nullptr)
- autostring32 name = GuiText_getString (my soundName);
- Melder_sprint (defaultName,300, name.get(), U".au");
- EDITOR_DO_SAVE
- writeAudioFile (me, file, Melder_NEXT_SUN);
- EDITOR_END
- }
- static void menu_cb_writeNist (SoundRecorder me, EDITOR_ARGS_FORM) {
- EDITOR_FORM_SAVE (U"Save as NIST file", nullptr)
- autostring32 name = GuiText_getString (my soundName);
- Melder_sprint (defaultName,300, name.get(), U".nist");
- EDITOR_DO_SAVE
- writeAudioFile (me, file, Melder_NIST);
- EDITOR_END
- }
- static void updateMenus (SoundRecorder me) {
- GuiMenuItem_check (my meterIntensityButton,
- my p_meter_which == kSoundRecorder_meter::INTENSITY);
- GuiMenuItem_check (my meterCentreOfGravityVersusIntensityButton,
- my p_meter_which == kSoundRecorder_meter::CENTRE_OF_GRAVITY_VERSUS_INTENSITY);
- }
- static void menu_cb_intensity (SoundRecorder me, EDITOR_ARGS_DIRECT) {
- my pref_meter_which () = my p_meter_which = kSoundRecorder_meter::INTENSITY;
- updateMenus (me);
- }
- static void menu_cb_centreOfGravityVersusIntensity (SoundRecorder me, EDITOR_ARGS_DIRECT) {
- my pref_meter_which () = my p_meter_which = kSoundRecorder_meter::CENTRE_OF_GRAVITY_VERSUS_INTENSITY;
- updateMenus (me);
- }
- static void menu_cb_SoundRecorder_help (SoundRecorder, EDITOR_ARGS_DIRECT) { Melder_help (U"SoundRecorder"); }
- void structSoundRecorder :: v_createMenus () {
- SoundRecorder_Parent :: v_createMenus ();
- Editor_addCommand (this, U"File", U"Save as WAV file...", 0, menu_cb_writeWav);
- Editor_addCommand (this, U"File", U"Save as AIFC file...", 0, menu_cb_writeAifc);
- Editor_addCommand (this, U"File", U"Save as NeXT/Sun file...", 0, menu_cb_writeNextSun);
- Editor_addCommand (this, U"File", U"Save as NIST file...", 0, menu_cb_writeNist);
- Editor_addCommand (this, U"File", U"-- write --", 0, nullptr);
- Editor_addMenu (this, U"Meter", 0);
- our meterIntensityButton =
- Editor_addCommand (this, U"Meter", U"Intensity", GuiMenu_RADIO_FIRST, menu_cb_intensity);
- our meterCentreOfGravityVersusIntensityButton =
- Editor_addCommand (this, U"Meter", U"Centre of gravity ~ intensity", GuiMenu_RADIO_NEXT, menu_cb_centreOfGravityVersusIntensity);
- }
- void structSoundRecorder :: v_createHelpMenuItems (EditorMenu menu) {
- SoundRecorder_Parent :: v_createHelpMenuItems (menu);
- EditorMenu_addCommand (menu, U"SoundRecorder help", '?', menu_cb_SoundRecorder_help);
- }
- autoSoundRecorder SoundRecorder_create (int numberOfChannels) {
- try {
- autoSoundRecorder me = Thing_new (SoundRecorder);
- my inputUsesPortAudio =
- #if defined (_WIN32)
- MelderAudio_getInputSoundSystem () == kMelder_inputSoundSystem::MME_VIA_PORTAUDIO;
- #elif defined (macintosh)
- MelderAudio_getInputSoundSystem () == kMelder_inputSoundSystem::COREAUDIO_VIA_PORTAUDIO;
- #else
- MelderAudio_getInputSoundSystem () == kMelder_inputSoundSystem::ALSA_VIA_PORTAUDIO;
- #endif
- if (my inputUsesPortAudio) {
- } else {
- #if defined (_WIN32)
- UINT numberOfDevices = waveInGetNumDevs ();
- if (numberOfDevices == 0)
- Melder_throw (U"No sound input devices available.");
- WAVEINCAPS caps;
- MMRESULT err = waveInGetDevCaps (WAVE_MAPPER, & caps, sizeof (WAVEINCAPS));
- if (numberOfChannels == 2 && caps. wChannels < 2)
- Melder_throw (U"Your computer does not support stereo sound input.");
- /* BUG: should we ask whether 16 bit is supported? */
- for (UINT i = 0; i < numberOfDevices; i ++) {
- waveInGetDevCaps (i, & caps, sizeof (WAVEINCAPS));
- /*Melder_casual (U"Name of device ", i, U": ", Melder_peek16to32 (aps. szPname));*/
- }
- #elif defined (macintosh)
- SInt32 soundFeatures;
- if (Gestalt (gestaltSoundAttr, & soundFeatures) ||
- ! (soundFeatures & (1 << gestaltSoundIOMgrPresent)) ||
- ! (soundFeatures & (1 << gestaltBuiltInSoundInput)) ||
- ! (soundFeatures & (1 << gestaltHasSoundInputDevice)))
- Melder_throw (U"Your computer does not support sound input.");
- if (! (soundFeatures & (1 << gestalt16BitSoundIO)) || // hardware
- ! (soundFeatures & (1 << gestaltStereoInput)) || // hardware
- ! (soundFeatures & (1 << gestalt16BitAudioSupport))) // software
- Melder_throw (U"Your computer does not support stereo sound input.");
- #endif
- }
- my numberOfChannels = numberOfChannels;
- if (sizeof (short) != 2)
- Melder_throw (U"Long shorts!!!!!");
- if (my inputUsesPortAudio) {
- my synchronous = false;
- } else {
- #if defined (macintosh) || defined (_WIN32)
- my synchronous = false;
- #else
- my synchronous = true;
- #endif
- }
- /*
- * Allocate the maximum buffer.
- */
- if (preferences.bufferSizeInMegabytes < 1) preferences.bufferSizeInMegabytes = 1; // validate preferences
- if (preferences.bufferSizeInMegabytes > 1000) preferences.bufferSizeInMegabytes = 1000;
- if (! my buffer) {
- integer nmax_bytes_pref = preferences.bufferSizeInMegabytes * 1000000;
- integer nmax_bytes = my inputUsesPortAudio ? nmax_bytes_pref :
- #if defined (_WIN32)
- 66150000; // the maximum physical buffer on Windows XP; shorter than in Windows 98, alas.
- #else
- nmax_bytes_pref;
- #endif
- my nmax = nmax_bytes / (sizeof (short) * numberOfChannels);
- for (;;) {
- try {
- my buffer = NUMvector <short> (0, my nmax * numberOfChannels - 1);
- break; // success
- } catch (MelderError) {
- if (my nmax < 100000) {
- throw; // failure, with error message
- } else {
- Melder_clearError ();
- my nmax /= 2; // retry with less application memory
- }
- }
- }
- }
- Melder_assert (my buffer);
- /*
- * Count the number of input devices and sources.
- */
- if (my inputUsesPortAudio) {
- static bool paInitialized = false;
- if (! paInitialized) {
- PaError err = Pa_Initialize ();
- if (Melder_debug == 20)
- Melder_casual (U"init ", Melder_peek8to32 (Pa_GetErrorText (err)));
- paInitialized = true;
- if (Melder_debug == 20) {
- PaHostApiIndex hostApiCount = Pa_GetHostApiCount ();
- Melder_casual (U"host API count ", hostApiCount);
- for (PaHostApiIndex iHostApi = 0; iHostApi < hostApiCount; iHostApi ++) {
- const PaHostApiInfo *hostApiInfo = Pa_GetHostApiInfo (iHostApi);
- PaHostApiTypeId type = hostApiInfo -> type;
- Melder_casual (U"host API ", iHostApi, U": ", type, U", \"", Melder_peek8to32 (hostApiInfo -> name), U"\" ", hostApiInfo -> deviceCount);
- }
- PaHostApiIndex defaultHostApi = Pa_GetDefaultHostApi ();
- Melder_casual (U"default host API ", defaultHostApi);
- PaDeviceIndex deviceCount = Pa_GetDeviceCount ();
- Melder_casual (U"device count ", deviceCount);
- }
- }
- PaDeviceIndex deviceCount = Pa_GetDeviceCount ();
- for (PaDeviceIndex idevice = 0; idevice < deviceCount; idevice ++) {
- const PaDeviceInfo *deviceInfo = Pa_GetDeviceInfo (idevice);
- if (Melder_debug == 20)
- Melder_casual (
- U"Device \"", Melder_peek8to32 (deviceInfo -> name),
- U"\", input ", deviceInfo -> maxInputChannels,
- U", output ", deviceInfo -> maxOutputChannels,
- U", sample rate ", deviceInfo -> defaultSampleRate
- );
- if (deviceInfo -> maxInputChannels > 0 && my numberOfInputDevices < SoundRecorder_IDEVICE_MAX) {
- my devices [++ my numberOfInputDevices]. canDo = true;
- str32ncpy (my devices [my numberOfInputDevices]. name, Melder_peek8to32 (deviceInfo -> name), 40);
- my devices [my numberOfInputDevices]. name [40] = U'\0';
- my deviceInfos [my numberOfInputDevices] = deviceInfo;
- my deviceIndices [my numberOfInputDevices] = idevice;
- }
- }
- if (my numberOfInputDevices == 0)
- Melder_throw (U"No input devices available.");
- } else {
- #if defined (macintosh)
- #elif defined (_WIN32)
- // No device info: use Windows mixer.
- #else
- my devices [1]. canDo = true;
- str32cpy (my devices [1]. name, U"Microphone");
- my devices [2]. canDo = true;
- str32cpy (my devices [2]. name, U"Line");
- #endif
- }
- /*
- * Sampling frequency constants.
- */
- my fsamps [SoundRecorder_IFSAMP_8000]. fsamp = 8000.0;
- my fsamps [SoundRecorder_IFSAMP_9800]. fsamp = 9800.0;
- my fsamps [SoundRecorder_IFSAMP_11025]. fsamp = 11025.0;
- my fsamps [SoundRecorder_IFSAMP_12000]. fsamp = 12000.0;
- my fsamps [SoundRecorder_IFSAMP_16000]. fsamp = 16000.0;
- my fsamps [SoundRecorder_IFSAMP_22050]. fsamp = 22050.0;
- my fsamps [SoundRecorder_IFSAMP_22254]. fsamp = 22254.54545;
- my fsamps [SoundRecorder_IFSAMP_24000]. fsamp = 24000.0;
- my fsamps [SoundRecorder_IFSAMP_32000]. fsamp = 32000.0;
- my fsamps [SoundRecorder_IFSAMP_44100]. fsamp = 44100.0;
- my fsamps [SoundRecorder_IFSAMP_48000]. fsamp = 48000.0;
- my fsamps [SoundRecorder_IFSAMP_64000]. fsamp = 64000.0;
- my fsamps [SoundRecorder_IFSAMP_96000]. fsamp = 96000.0;
- my fsamps [SoundRecorder_IFSAMP_192000]. fsamp = 192000.0;
- /*
- * The default set of possible sampling frequencies, to be modified in the initialize () procedure.
- */
- for (integer i = 1; i <= SoundRecorder_IFSAMP_MAX; i ++) my fsamps [i]. canDo = true; // optimistic: can do all, except two:
- my fsamps [SoundRecorder_IFSAMP_9800]. canDo = false; // sgi only
- my fsamps [SoundRecorder_IFSAMP_22254]. canDo = false; // old Mac only
- /*
- * Initialize system-dependent structures.
- * On all systems: stereo 16-bit linear encoding.
- * Some systems take initial values from the system control panel
- * (automatically in the workProc), other systems from theControlPanel.
- */
- initialize (me.get());
- Editor_init (me.get(), 100, 100, 600, 500, U"SoundRecorder", nullptr);
- my graphics = Graphics_create_xmdrawingarea (my meter);
- Melder_assert (my graphics);
- Graphics_setWindow (my graphics.get(), 0.0, 1.0, 0.0, 1.0);
- Graphics_setColour (my graphics.get(), Graphics_WHITE);
- Graphics_fillRectangle (my graphics.get(), 0.0, 1.0, 0.0, 1.0);
- struct structGuiDrawingArea_ResizeEvent event { my meter, 0 };
- event. width = GuiControl_getWidth (my meter);
- event. height = GuiControl_getHeight (my meter);
- gui_drawingarea_cb_resize (me.get(), & event);
- #if cocoa
- CFRunLoopTimerContext context = { 0, me.get(), nullptr, nullptr, nullptr };
- my d_cocoaTimer = CFRunLoopTimerCreate (nullptr, CFAbsoluteTimeGetCurrent () + 0.02,
- 0.02, 0, 0, workProc, & context);
- CFRunLoopAddTimer (CFRunLoopGetCurrent (), my d_cocoaTimer, kCFRunLoopCommonModes);
- #elif gtk
- g_idle_add (workProc, me.get());
- #elif motif
- my workProcId = GuiAddWorkProc (workProc, me.get());
- #endif
- updateMenus (me.get());
- return me;
- } catch (MelderError) {
- Melder_throw (U"SoundRecorder not created.");
- }
- }
- /* End of file SoundRecorder.cpp */
|