- Timestamp:
- Nov 25, 2014 11:28:51 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/dsoundaudio.c
r53394 r53395 108 108 LPDIRECTSOUNDBUFFER dsound_primary_buffer; 109 109 audsettings_t settings; 110 RTUUID devguid_capture; 110 111 LPCGUID devguidp_capture; 111 112 } dsound; … … 1299 1300 1300 1301 if (conf.device_guid_in) { 1301 int rc = RTUuidFromStr(& devguid, conf.device_guid_in);1302 int rc = RTUuidFromStr(&s->devguid_capture, conf.device_guid_in); 1302 1303 if (RT_FAILURE(rc)) { 1303 1304 LogRel(("DSound: Could not parse DirectSound input device GUID\n")); 1304 1305 } 1305 s->devguidp_capture = (LPCGUID)& devguid;1306 s->devguidp_capture = (LPCGUID)&s->devguid_capture; 1306 1307 } else { 1307 1308 s->devguidp_capture = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.