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 #include "stdafx.h" 9 #include "audio_format.hpp" 10 11 _AUDIO_NAMESPACE_START_ 12 13 /* Standard audio formats (declared as externs in `audio_format.hpp') */ 14 15 audio_format UNKNOWN_FORMAT(0, 0, 0); 16 audio_format A44100_16BIT_STEREO(44100, 16, 2); 17 audio_format A44100_16BIT_MONO(44100, 16, 1); 18 19 _AUDIO_NAMESPACE_END_ 20