source: mainline/uspace/drv/audio/sb16/pcm_iface.c@ 018ab50

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 018ab50 was 018ab50, checked in by Jan Vesely <jano.vesely@…>, 13 years ago

audio: Move event callback into separate API calls.

  • Property mode set to 100644
File size: 4.5 KB
Line 
1/*
2 * Copyright (c) 2011 Jan Vesely
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28/** @addtogroup drvaudiosb16
29 * @{
30 */
31/** @file
32 * Main routines of Creative Labs SoundBlaster 16 driver
33 */
34
35#include <async.h>
36#include <errno.h>
37#include <audio_pcm_iface.h>
38#include <pcm/sample_format.h>
39
40#include "dsp.h"
41
42static int sb_get_info_str(ddf_fun_t *fun, const char** name)
43{
44 if (name)
45 *name = "SB 16 DSP";
46 return EOK;
47}
48
49static unsigned sb_query_cap(ddf_fun_t *fun, audio_cap_t cap)
50{
51 assert(fun);
52 assert(fun->driver_data);
53 sb_dsp_t *dsp = fun->driver_data;
54 return sb_dsp_query_cap(dsp, cap);
55}
56
57static int sb_test_format(ddf_fun_t *fun, unsigned *channels, unsigned *rate,
58 pcm_sample_format_t *format)
59{
60 assert(fun);
61 assert(fun->driver_data);
62 sb_dsp_t *dsp = fun->driver_data;
63 return sb_dsp_test_format(dsp, channels, rate, format);
64}
65static int sb_get_buffer(ddf_fun_t *fun, void **buffer, size_t *size)
66{
67 assert(fun);
68 assert(fun->driver_data);
69 sb_dsp_t *dsp = fun->driver_data;
70 return sb_dsp_get_buffer(dsp, buffer, size);
71}
72
73static int sb_get_buffer_position(ddf_fun_t *fun, size_t *size)
74{
75 assert(fun);
76 assert(fun->driver_data);
77 sb_dsp_t *dsp = fun->driver_data;
78 return sb_dsp_get_buffer_position(dsp, size);
79}
80
81static int sb_set_event_session(ddf_fun_t *fun, async_sess_t *sess)
82{
83 assert(fun);
84 assert(fun->driver_data);
85 sb_dsp_t *dsp = fun->driver_data;
86 return sb_dsp_set_event_session(dsp, sess);
87}
88
89static async_sess_t * sb_get_event_session(ddf_fun_t *fun)
90{
91 assert(fun);
92 assert(fun->driver_data);
93 sb_dsp_t *dsp = fun->driver_data;
94 return sb_dsp_get_event_session(dsp);
95}
96
97static int sb_release_buffer(ddf_fun_t *fun)
98{
99 assert(fun);
100 assert(fun->driver_data);
101 sb_dsp_t *dsp = fun->driver_data;
102 return sb_dsp_release_buffer(dsp);
103}
104
105static int sb_start_playback(ddf_fun_t *fun, unsigned frames,
106 unsigned channels, unsigned sample_rate, pcm_sample_format_t format)
107{
108 assert(fun);
109 assert(fun->driver_data);
110 sb_dsp_t *dsp = fun->driver_data;
111 return sb_dsp_start_playback(
112 dsp, frames, channels, sample_rate, format);
113}
114
115static int sb_stop_playback(ddf_fun_t *fun)
116{
117 assert(fun);
118 assert(fun->driver_data);
119 sb_dsp_t *dsp = fun->driver_data;
120 return sb_dsp_stop_playback(dsp);
121}
122
123static int sb_start_capture(ddf_fun_t *fun, unsigned frames,
124 unsigned channels, unsigned sample_rate, pcm_sample_format_t format)
125{
126 assert(fun);
127 assert(fun->driver_data);
128 sb_dsp_t *dsp = fun->driver_data;
129 return sb_dsp_start_capture(
130 dsp, frames, channels, sample_rate, format);
131}
132
133static int sb_stop_capture(ddf_fun_t *fun)
134{
135 assert(fun);
136 assert(fun->driver_data);
137 sb_dsp_t *dsp = fun->driver_data;
138 return sb_dsp_stop_capture(dsp);
139}
140
141audio_pcm_iface_t sb_pcm_iface = {
142 .get_info_str = sb_get_info_str,
143 .test_format = sb_test_format,
144 .query_cap = sb_query_cap,
145
146 .get_buffer = sb_get_buffer,
147 .release_buffer = sb_release_buffer,
148 .set_event_session = sb_set_event_session,
149 .get_event_session = sb_get_event_session,
150 .get_buffer_pos = sb_get_buffer_position,
151
152 .start_playback = sb_start_playback,
153 .stop_playback = sb_stop_playback,
154
155 .start_capture = sb_start_capture,
156 .stop_capture = sb_stop_capture,
157};
158/**
159 * @}
160 */
Note: See TracBrowser for help on using the repository browser.