dsp.h revision 162588
1162588Snetchild#ifndef _PCMDSP_H_
2162588Snetchild#define _PCMDSP_H_
3139749Simp/*-
4119853Scg * Copyright (c) 1999 Cameron Grant <cg@freebsd.org>
550724Scg * All rights reserved.
650724Scg *
750724Scg * Redistribution and use in source and binary forms, with or without
850724Scg * modification, are permitted provided that the following conditions
950724Scg * are met:
1050724Scg * 1. Redistributions of source code must retain the above copyright
1150724Scg *    notice, this list of conditions and the following disclaimer.
1250724Scg * 2. Redistributions in binary form must reproduce the above copyright
1350724Scg *    notice, this list of conditions and the following disclaimer in the
1450724Scg *    documentation and/or other materials provided with the distribution.
1550724Scg *
1650724Scg * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1750724Scg * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1850724Scg * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1950724Scg * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
2050724Scg * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2150724Scg * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2250724Scg * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2350724Scg * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2450724Scg * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2550724Scg * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2650724Scg * SUCH DAMAGE.
2750724Scg *
2850733Speter * $FreeBSD: head/sys/dev/sound/pcm/dsp.h 162588 2006-09-23 20:45:47Z netchild $
2950724Scg */
3050724Scg
31124740Smatkextern struct cdevsw dsp_cdevsw;
32162588Snetchild
33162588Snetchildint dsp_oss_audioinfo(struct cdev *, oss_audioinfo *);
34162588Snetchild
35162588Snetchild#endif /* !_PCMDSP_H_ */
36