Changeset 5077 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Sep 27, 2007 1:56:20 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/alsaaudio.c
r5050 r5077 33 33 34 34 #include "Builtins.h" 35 #include " vl_vbox.h"35 #include "../../vl_vbox.h" 36 36 #include "audio.h" 37 #ifdef VBOX 38 #include "alsa_stubs.h" 39 #endif 37 40 #include <iprt/alloc.h> 38 41 … … 1035 1038 { 1036 1039 #ifdef VBOX 1040 int rc; 1041 1042 rc = audioLoadAlsaLib(); 1043 if (RT_FAILURE(rc)) { 1044 LogRelFunc(("Failed to load the ALSA shared library! Error %Rrc\n", rc)); 1045 return NULL; 1046 } 1037 1047 snd_lib_error_set_handler (alsa_error_handler); 1038 1048 #endif … … 1089 1099 }; 1090 1100 1091 extern DECLEXPORT(struct audio_driver) alsa_audio_driver;1092 1101 struct audio_driver alsa_audio_driver = { 1093 1102 INIT_FIELD (name = ) "alsa",
Note:
See TracChangeset
for help on using the changeset viewer.