/*****************************************************************************
Copyright(c) 2007 Analog Devices, Inc.  All Rights Reserved. This software is
proprietary and confidential to Analog Devices, Inc. and its licensors.
******************************************************************************

$Revision: 1.1 $
$Date: 2008/03/25 05:56:14 $
$LastChangedBy: dwu $
	
Project:	Audio Kit
Title:		WAV decode/encode
Author(s):	ADA

Description:
			header file for
			High level WAV encoding/decoding functions

References:
			None

******************************************************************************
Tab Setting:			4

Target Processor:		ADSP-BF5xx
Target Tools Revision:	ADSP VisualDSP++ v4.5
******************************************************************************

Modification History:
====================
$Log: WAV_codec.h,v $
Revision 1.1  2008/03/25 05:56:14  randreol
Moved files for new directry structure

Revision 1.1.1.1  2006/05/09 04:01:29  dwu
USB based audio demonstration




*****************************************************************************/

#ifndef __WAV_CODEC_H__
#define __WAV_CODEC_H__

/******************************************************************************
**          #defines
******************************************************************************/

/******************************************************************************
**          #defines
******************************************************************************/

/******************************************************************************
**          Typedefs/Enumerations
******************************************************************************/
/******************************************************************************
**      Structure Declarations
******************************************************************************/

/******************************************************************************
**      Function Declarations
******************************************************************************/
int WAV_Decode(char *filename);
int WAV_Encode(char *filename);
								 


#endif // #ifdef DEMO__H

