/*
 *  Copyright 2001 by Texas Instruments Incorporated.
 *  All rights reserved. Property of Texas Instruments Incorporated.
 *  Restricted rights to use, duplicate or disclose this code are
 *  granted through contract.
 *  U.S. Patent Nos. 5,283,900  5,392,448
 */
/* "@(#) DSP/BIOS 4.45 03-02-01 (barracuda-h31)" */
/*
 *  ======== audio.h ========
 */

#ifndef AUDIO_
#define AUDIO_

#include <pip.h>
#include <log.h>
#include <hst.h>

#define AUDIO_USEHST	0
#define MAXLOAD		800

#if AUDIO_USEHST
extern far HST_Obj hostOutputProbe;
#endif

extern far LOG_Obj trace;

extern far Void audio(PIP_Obj *in, PIP_Obj *out);
extern far Void step(void);
extern Void error(String msg, ...);

extern far Void AUDIO_load(Int load);

#endif
