wave_out.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:3k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* Copyright (c) 2002, John Edwards
  2.    Redistribution and use in source and binary forms, with or without
  3.    modification, are permitted provided that the following conditions
  4.    are met:
  5.    - Redistributions of source code must retain the above copyright
  6.    notice, this list of conditions and the following disclaimer.
  7.    - Redistributions in binary form must reproduce the above copyright
  8.    notice, this list of conditions and the following disclaimer in the
  9.    documentation and/or other materials provided with the distribution.
  10.    - Neither the name of the Xiph.org Foundation nor the names of its
  11.    contributors may be used to endorse or promote products derived from
  12.    this software without specific prior written permission.
  13.    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  14.    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  15.    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  16.    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
  17.    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  18.    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  19.    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  20.    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  21.    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  22.    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  23.    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24. */
  25. //    WAVE_OUT.H - Necessary stuff for WIN_AUDIO
  26. #ifndef WAVE_OUT_H
  27. #define WAVE_OUT_H
  28. #include <stdio.h>
  29. #include <windows.h>
  30. #ifdef __MINGW32__
  31. #include <mmsystem.h>
  32. #endif
  33. #define VERSION_STRING "n 0.7.0n"
  34. #define Cdecl               __cdecl
  35. #define __attribute__(x)
  36. #define sleep(__sec)        Sleep ((__sec) * 1000)
  37. #define inline              __inline
  38. #define restrict
  39. //// constants /////////////////////////////////////////////////////
  40. #define CD_SAMPLE_FREQ         44.1e3
  41. #define SAMPLE_SIZE            16
  42. #define SAMPLE_SIZE_STRING     ""
  43. #define WINAUDIO_FD            ((FILE_T)-128)
  44. #define FILE_T                 FILE*
  45. #define INVALID_FILEDESC       NULL
  46. //// Simple types //////////////////////////////////////////////////
  47. typedef signed   int        Int;        // at least -32767...+32767, fast type
  48. typedef unsigned int        Uint;       // at least 0...65535, fast type
  49. typedef long double         Ldouble;    // most exact floating point format
  50. //// procedures/functions //////////////////////////////////////////
  51. // wave_out.c
  52. Int        Set_WIN_Params             ( FILE_T dummyFile , Ldouble SampleFreq, Uint BitsPerSample, Uint Channels);
  53. int        WIN_Play_Samples           ( const void* buff, size_t len );
  54. int        WIN_Audio_close            ( void );
  55. #endif /* WAVE_OUT_H */