[q-lang-cvs] q-audio/examples audio_examp.q,1.12,1.13
Brought to you by:
agraef
From: Albert G. <ag...@us...> - 2008-01-31 07:00:41
|
Update of /cvsroot/q-lang/q-audio/examples In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv16488 Modified Files: audio_examp.q Log Message: add audio_in/audio_out convenience functions Index: audio_examp.q =================================================================== RCS file: /cvsroot/q-lang/q-audio/examples/audio_examp.q,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** audio_examp.q 25 Jun 2005 04:41:24 -0000 1.12 --- audio_examp.q 31 Jan 2008 07:00:37 -0000 1.13 *************** *** 6,13 **** /* Config section. ***********************************************************/ ! /* Audio input and output devices. Device 0 should always be available (and is ! usually the default). Change this for your local setup as needed. (You can ! display the drivers and devices available on your system with the ! audio_drivers and audio_devices functions of the audio module.) */ //def AUDIO_IN = 0, AUDIO_OUT = 0; --- 6,19 ---- /* Config section. ***********************************************************/ ! /* Provide reasonable defaults for the audio input and output devices. This ! will pick Jack if it is available. You can also set the Q_AUDIO_INPUT and ! Q_AUDIO_OUTPUT environment variables, see audio.q for details. */ ! ! def AUDIO_IN = audio_in, AUDIO_OUT = audio_out; ! ! /* Uncomment the following to set the devices explicitly. Device 0 should ! always be available. You can display the drivers and devices available on ! your system with the audio_drivers and audio_devices functions of the audio ! module. */ //def AUDIO_IN = 0, AUDIO_OUT = 0; |