xref: /freebsd/sys/dev/sound/pcm/dsp.h (revision b611c801f0acad06062769cfc815c6f181c8c66f)
1b611c801SAlexander Leidinger #ifndef _PCMDSP_H_
2b611c801SAlexander Leidinger #define _PCMDSP_H_
3098ca2bdSWarner Losh /*-
43f225978SCameron Grant  * Copyright (c) 1999 Cameron Grant <cg@freebsd.org>
5987e5972SCameron Grant  * All rights reserved.
6987e5972SCameron Grant  *
7987e5972SCameron Grant  * Redistribution and use in source and binary forms, with or without
8987e5972SCameron Grant  * modification, are permitted provided that the following conditions
9987e5972SCameron Grant  * are met:
10987e5972SCameron Grant  * 1. Redistributions of source code must retain the above copyright
11987e5972SCameron Grant  *    notice, this list of conditions and the following disclaimer.
12987e5972SCameron Grant  * 2. Redistributions in binary form must reproduce the above copyright
13987e5972SCameron Grant  *    notice, this list of conditions and the following disclaimer in the
14987e5972SCameron Grant  *    documentation and/or other materials provided with the distribution.
15987e5972SCameron Grant  *
16987e5972SCameron Grant  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17987e5972SCameron Grant  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18987e5972SCameron Grant  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19987e5972SCameron Grant  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20987e5972SCameron Grant  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21987e5972SCameron Grant  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22987e5972SCameron Grant  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23987e5972SCameron Grant  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24987e5972SCameron Grant  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25987e5972SCameron Grant  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26987e5972SCameron Grant  * SUCH DAMAGE.
27987e5972SCameron Grant  *
2853c5a968SPeter Wemm  * $FreeBSD$
29987e5972SCameron Grant  */
30987e5972SCameron Grant 
315ee30e27SMathew Kanner extern struct cdevsw dsp_cdevsw;
32b611c801SAlexander Leidinger 
33b611c801SAlexander Leidinger int dsp_oss_audioinfo(struct cdev *, oss_audioinfo *);
34b611c801SAlexander Leidinger 
35b611c801SAlexander Leidinger #endif /* !_PCMDSP_H_ */
36