Blame tools/wave_out.h

Packit 664db3
/* Copyright (c) 2002, John Edwards
Packit 664db3

Packit 664db3
   Redistribution and use in source and binary forms, with or without
Packit 664db3
   modification, are permitted provided that the following conditions
Packit 664db3
   are met:
Packit 664db3

Packit 664db3
   - Redistributions of source code must retain the above copyright
Packit 664db3
   notice, this list of conditions and the following disclaimer.
Packit 664db3

Packit 664db3
   - Redistributions in binary form must reproduce the above copyright
Packit 664db3
   notice, this list of conditions and the following disclaimer in the
Packit 664db3
   documentation and/or other materials provided with the distribution.
Packit 664db3

Packit 664db3
   - Neither the name of the Xiph.org Foundation nor the names of its
Packit 664db3
   contributors may be used to endorse or promote products derived from
Packit 664db3
   this software without specific prior written permission.
Packit 664db3

Packit 664db3
   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Packit 664db3
   ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Packit 664db3
   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
Packit 664db3
   A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
Packit 664db3
   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
Packit 664db3
   EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
Packit 664db3
   PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
Packit 664db3
   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
Packit 664db3
   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
Packit 664db3
   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
Packit 664db3
   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 664db3
*/
Packit 664db3

Packit 664db3
//    WAVE_OUT.H - Necessary stuff for WIN_AUDIO
Packit 664db3

Packit 664db3
#ifndef WAVE_OUT_H
Packit 664db3
#define WAVE_OUT_H
Packit 664db3

Packit 664db3
#include <stdio.h>
Packit 664db3
#include <windows.h>
Packit 664db3
#ifdef __MINGW32__
Packit 664db3
#include <mmsystem.h>
Packit 664db3
#endif
Packit 664db3

Packit 664db3
#define VERSION_STRING "\n 0.7.0\n"
Packit 664db3

Packit 664db3
#define Cdecl               __cdecl
Packit 664db3
#define __attribute__(x)
Packit 664db3
#define sleep(__sec)        Sleep ((__sec) * 1000)
Packit 664db3
#define inline              __inline
Packit 664db3
#define restrict
Packit 664db3

Packit 664db3
//// constants /////////////////////////////////////////////////////
Packit 664db3

Packit 664db3
#define CD_SAMPLE_FREQ         44.1e3
Packit 664db3
#define SAMPLE_SIZE            16
Packit 664db3
#define SAMPLE_SIZE_STRING     ""
Packit 664db3
#define WINAUDIO_FD            ((FILE_T)-128)
Packit 664db3
#define FILE_T                 FILE*
Packit 664db3
#define INVALID_FILEDESC       NULL
Packit 664db3

Packit 664db3
//// Simple types //////////////////////////////////////////////////
Packit 664db3

Packit 664db3
typedef signed   int        Int;        // at least -32767...+32767, fast type
Packit 664db3
typedef unsigned int        Uint;       // at least 0...65535, fast type
Packit 664db3
typedef long double         Ldouble;    // most exact floating point format
Packit 664db3

Packit 664db3
//// procedures/functions //////////////////////////////////////////
Packit 664db3
// wave_out.c
Packit 664db3
Int        Set_WIN_Params             ( FILE_T dummyFile , Ldouble SampleFreq, Uint BitsPerSample, Uint Channels);
Packit 664db3
int        WIN_Play_Samples           ( const void* buff, size_t len );
Packit 664db3
int        WIN_Audio_close            ( void );
Packit 664db3

Packit 664db3
#endif /* WAVE_OUT_H */