1 /* PROJECT: ReactOS sndrec32 2 * LICENSE: GPL - See COPYING in the top level directory 3 * FILE: base/applications/sndrec32/audio_format.cpp 4 * PURPOSE: Sound recording 5 * PROGRAMMERS: Marco Pagliaricci (irc: rendar) 6 */ 7 8 9 10 11 #include "stdafx.h" 12 #include "audio_format.hpp" 13 14 15 16 17 _AUDIO_NAMESPACE_START_ 18 19 20 21 // 22 // Standard audio formats (declared as 23 // externs in `audio_format.hpp') 24 // 25 26 audio_format UNNKOWN_FORMAT( 0, 0, 0); 27 audio_format A44100_16BIT_STEREO( 44100, 16, 2 ); 28 audio_format A44100_16BIT_MONO( 44100, 16, 1 ); 29 30 31 32 33 34 35 _AUDIO_NAMESPACE_END_ 36