VirtualBox

source: vbox/trunk/src/VBox/Devices/Audio/alsa_stubs.c@ 68376

Last change on this file since 68376 was 68376, checked in by vboxsync, 7 years ago

Audio/DrvHostALSAAudio.cpp: Fixed recording by actually doing a snd_pcm_start() after preparing the device. This never has been the case and only worked by coincidence before (as snd_pcm_readi() internally starts the device if never done so).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.9 KB
Line 
1/* $Id: alsa_stubs.c 68376 2017-08-10 16:16:01Z vboxsync $ */
2/** @file
3 * Stubs for libasound.
4 */
5
6/*
7 * Copyright (C) 2006-2017 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17#define LOG_GROUP LOG_GROUP_DRV_HOST_AUDIO
18#include <iprt/assert.h>
19#include <iprt/ldr.h>
20#include <VBox/log.h>
21#include <VBox/err.h>
22
23#include <alsa/asoundlib.h>
24
25#include "alsa_stubs.h"
26
27#define VBOX_ALSA_LIB "libasound.so.2"
28
29#define PROXY_STUB(function, rettype, signature, shortsig) \
30 static rettype (*pfn_ ## function) signature; \
31 \
32 rettype VBox_##function signature; \
33 rettype VBox_##function signature \
34 { \
35 return pfn_ ## function shortsig; \
36 }
37
38PROXY_STUB(snd_device_name_hint, int,
39 (int card, const char *iface, void ***hints),
40 (card, iface, hints))
41PROXY_STUB(snd_device_name_free_hint, int,
42 (void **hints),
43 (hints))
44PROXY_STUB(snd_device_name_get_hint, char *,
45 (const void *hint, const char *id),
46 (hint, id))
47
48PROXY_STUB(snd_pcm_hw_params_any, int,
49 (snd_pcm_t *pcm, snd_pcm_hw_params_t *params),
50 (pcm, params))
51PROXY_STUB(snd_pcm_close, int, (snd_pcm_t *pcm), (pcm))
52PROXY_STUB(snd_pcm_avail_update, snd_pcm_sframes_t, (snd_pcm_t *pcm),
53 (pcm))
54PROXY_STUB(snd_pcm_hw_params_set_channels_near, int,
55 (snd_pcm_t *pcm, snd_pcm_hw_params_t *params, unsigned int *val),
56 (pcm, params, val))
57PROXY_STUB(snd_pcm_hw_params_set_period_time_near, int,
58 (snd_pcm_t *pcm, snd_pcm_hw_params_t *params, unsigned int *val, int *dir),
59 (pcm, params, val, dir))
60PROXY_STUB(snd_pcm_prepare, int, (snd_pcm_t *pcm), (pcm))
61PROXY_STUB(snd_pcm_sw_params_sizeof, size_t, (void), ())
62PROXY_STUB(snd_pcm_hw_params_set_period_size_near, int,
63 (snd_pcm_t *pcm, snd_pcm_hw_params_t *params, snd_pcm_uframes_t *val, int *dir),
64 (pcm, params, val, dir))
65PROXY_STUB(snd_pcm_hw_params_get_period_size, int,
66 (const snd_pcm_hw_params_t *params, snd_pcm_uframes_t *frames, int *dir),
67 (params, frames, dir))
68PROXY_STUB(snd_pcm_hw_params, int,
69 (snd_pcm_t *pcm, snd_pcm_hw_params_t *params),
70 (pcm, params))
71PROXY_STUB(snd_pcm_hw_params_sizeof, size_t, (void), ())
72PROXY_STUB(snd_pcm_state, snd_pcm_state_t, (snd_pcm_t *pcm), (pcm))
73PROXY_STUB(snd_pcm_open, int,
74 (snd_pcm_t **pcm, const char *name, snd_pcm_stream_t stream, int mode),
75 (pcm, name, stream, mode))
76PROXY_STUB(snd_lib_error_set_handler, int, (snd_lib_error_handler_t handler),
77 (handler))
78PROXY_STUB(snd_pcm_sw_params, int,
79 (snd_pcm_t *pcm, snd_pcm_sw_params_t *params),
80 (pcm, params))
81PROXY_STUB(snd_pcm_hw_params_get_period_size_min, int,
82 (const snd_pcm_hw_params_t *params, snd_pcm_uframes_t *frames, int *dir),
83 (params, frames, dir))
84PROXY_STUB(snd_pcm_writei, snd_pcm_sframes_t,
85 (snd_pcm_t *pcm, const void *buffer, snd_pcm_uframes_t size),
86 (pcm, buffer, size))
87PROXY_STUB(snd_pcm_readi, snd_pcm_sframes_t,
88 (snd_pcm_t *pcm, void *buffer, snd_pcm_uframes_t size),
89 (pcm, buffer, size))
90PROXY_STUB(snd_strerror, const char *, (int errnum), (errnum))
91PROXY_STUB(snd_pcm_start, int, (snd_pcm_t *pcm), (pcm))
92PROXY_STUB(snd_pcm_drop, int, (snd_pcm_t *pcm), (pcm))
93PROXY_STUB(snd_pcm_resume, int, (snd_pcm_t *pcm), (pcm))
94PROXY_STUB(snd_pcm_hw_params_get_buffer_size, int,
95 (const snd_pcm_hw_params_t *params, snd_pcm_uframes_t *val),
96 (params, val))
97PROXY_STUB(snd_pcm_hw_params_set_rate_near, int,
98 (snd_pcm_t *pcm, snd_pcm_hw_params_t *params, unsigned int *val, int *dir),
99 (pcm, params, val, dir))
100PROXY_STUB(snd_pcm_hw_params_set_access, int,
101 (snd_pcm_t *pcm, snd_pcm_hw_params_t *params, snd_pcm_access_t _access),
102 (pcm, params, _access))
103PROXY_STUB(snd_pcm_hw_params_set_buffer_time_near, int,
104 (snd_pcm_t *pcm, snd_pcm_hw_params_t *params, unsigned int *val, int *dir),
105 (pcm, params, val, dir))
106PROXY_STUB(snd_pcm_hw_params_set_buffer_size_near, int,
107 (snd_pcm_t *pcm, snd_pcm_hw_params_t *params, snd_pcm_uframes_t *val),
108 (pcm, params, val))
109PROXY_STUB(snd_pcm_hw_params_get_buffer_size_min, int,
110 (const snd_pcm_hw_params_t *params, snd_pcm_uframes_t *val),
111 (params, val))
112PROXY_STUB(snd_pcm_hw_params_set_format, int,
113 (snd_pcm_t *pcm, snd_pcm_hw_params_t *params, snd_pcm_format_t val),
114 (pcm, params, val))
115PROXY_STUB(snd_pcm_sw_params_current, int,
116 (snd_pcm_t *pcm, snd_pcm_sw_params_t *params),
117 (pcm, params))
118PROXY_STUB(snd_pcm_sw_params_set_start_threshold, int,
119 (snd_pcm_t *pcm, snd_pcm_sw_params_t *params, snd_pcm_uframes_t val),
120 (pcm, params, val))
121PROXY_STUB(snd_pcm_sw_params_set_avail_min, int,
122 (snd_pcm_t *pcm, snd_pcm_sw_params_t *params, snd_pcm_uframes_t val),
123 (pcm, params, val))
124
125typedef struct
126{
127 const char *name;
128 void (**fn)(void);
129} SHARED_FUNC;
130
131#define ELEMENT(function) { #function , (void (**)(void)) & pfn_ ## function }
132static SHARED_FUNC SharedFuncs[] =
133{
134 ELEMENT(snd_device_name_hint),
135 ELEMENT(snd_device_name_get_hint),
136 ELEMENT(snd_device_name_free_hint),
137
138 ELEMENT(snd_pcm_hw_params_any),
139 ELEMENT(snd_pcm_close),
140 ELEMENT(snd_pcm_avail_update),
141 ELEMENT(snd_pcm_hw_params_set_channels_near),
142 ELEMENT(snd_pcm_hw_params_set_period_time_near),
143 ELEMENT(snd_pcm_prepare),
144 ELEMENT(snd_pcm_sw_params_sizeof),
145 ELEMENT(snd_pcm_hw_params_set_period_size_near),
146 ELEMENT(snd_pcm_hw_params_get_period_size),
147 ELEMENT(snd_pcm_hw_params),
148 ELEMENT(snd_pcm_hw_params_sizeof),
149 ELEMENT(snd_pcm_state),
150 ELEMENT(snd_pcm_open),
151 ELEMENT(snd_lib_error_set_handler),
152 ELEMENT(snd_pcm_sw_params),
153 ELEMENT(snd_pcm_hw_params_get_period_size_min),
154 ELEMENT(snd_pcm_writei),
155 ELEMENT(snd_pcm_readi),
156 ELEMENT(snd_strerror),
157 ELEMENT(snd_pcm_start),
158 ELEMENT(snd_pcm_drop),
159 ELEMENT(snd_pcm_resume),
160 ELEMENT(snd_pcm_hw_params_get_buffer_size),
161 ELEMENT(snd_pcm_hw_params_set_rate_near),
162 ELEMENT(snd_pcm_hw_params_set_access),
163 ELEMENT(snd_pcm_hw_params_set_buffer_time_near),
164 ELEMENT(snd_pcm_hw_params_set_buffer_size_near),
165 ELEMENT(snd_pcm_hw_params_get_buffer_size_min),
166 ELEMENT(snd_pcm_hw_params_set_format),
167 ELEMENT(snd_pcm_sw_params_current),
168 ELEMENT(snd_pcm_sw_params_set_start_threshold),
169 ELEMENT(snd_pcm_sw_params_set_avail_min)
170};
171#undef ELEMENT
172
173/**
174 * Try to dynamically load the ALSA libraries. This function is not
175 * thread-safe, and should be called before attempting to use any of the
176 * ALSA functions.
177 *
178 * @returns iprt status code
179 */
180int audioLoadAlsaLib(void)
181{
182 int rc = VINF_SUCCESS;
183 unsigned i;
184 static enum { NO = 0, YES, FAIL } isLibLoaded = NO;
185 RTLDRMOD hLib;
186
187 LogFlowFunc(("\n"));
188 /* If this is not NO then the function has obviously been called twice,
189 which is likely to be a bug. */
190 if (NO != isLibLoaded)
191 {
192 AssertMsgFailed(("isLibLoaded == %s\n", YES == isLibLoaded ? "YES" : "NO"));
193 return YES == isLibLoaded ? VINF_SUCCESS : VERR_NOT_SUPPORTED;
194 }
195 isLibLoaded = FAIL;
196 rc = RTLdrLoad(VBOX_ALSA_LIB, &hLib);
197 if (RT_FAILURE(rc))
198 {
199 LogRelFunc(("Failed to load library %s\n", VBOX_ALSA_LIB));
200 return rc;
201 }
202 for (i=0; i<RT_ELEMENTS(SharedFuncs); i++)
203 {
204 rc = RTLdrGetSymbol(hLib, SharedFuncs[i].name, (void**)SharedFuncs[i].fn);
205 if (RT_FAILURE(rc))
206 return rc;
207 }
208 isLibLoaded = YES;
209 return rc;
210}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette