Changeset 73462 in vbox for trunk/src/VBox
- Timestamp:
- Aug 3, 2018 8:15:08 AM (6 years ago)
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostPulseAudio.cpp
r73370 r73462 644 644 return rc; 645 645 } 646 647 LogRel(("PulseAudio: Using v%s\n", pa_get_library_version())); 646 648 647 649 pThis->fAbortLoop = false; -
trunk/src/VBox/Devices/Audio/pulse_mangling.h
r69119 r73462 7 7 8 8 /* 9 * Copyright (C) 2013-201 7Oracle Corporation9 * Copyright (C) 2013-2018 Oracle Corporation 10 10 * 11 11 * This file is part of VirtualBox Open Source Edition (OSE), as … … 39 39 40 40 #define pa_frame_size PULSE_MANGLER(pa_frame_size) 41 #define pa_get_library_version PULSE_MANGLER(pa_get_library_version) 41 42 #define pa_operation_unref PULSE_MANGLER(pa_operation_unref) 42 43 #define pa_operation_get_state PULSE_MANGLER(pa_operation_get_state) -
trunk/src/VBox/Devices/Audio/pulse_stubs.c
r69119 r73462 5 5 6 6 /* 7 * Copyright (C) 2006-201 7Oracle Corporation7 * Copyright (C) 2006-2018 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 88 88 (c, cb, userdata)) 89 89 90 91 90 PROXY_STUB (pa_frame_size, size_t, 92 91 (const pa_sample_spec *spec), 93 92 (spec)) 93 PROXY_STUB (pa_get_library_version, const char *, (void), ()) 94 94 PROXY_STUB_VOID(pa_operation_unref, 95 95 (pa_operation *o), … … 259 259 260 260 ELEMENT(pa_frame_size), 261 ELEMENT(pa_get_library_version), 261 262 ELEMENT(pa_operation_unref), 262 263 ELEMENT(pa_operation_get_state),
Note:
See TracChangeset
for help on using the changeset viewer.