Winecfg crashes with audio tab.

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
Adriasil
Level 2
Level 2
Posts: 13
Joined: Tue Mar 16, 2010 12:27 pm

Winecfg crashes with audio tab.

Post by Adriasil »

Hi there just installed latest build of wine through macports.

I'm running MacOS 10.5, with intel core 2 duo 2.4GHz.

When I click the audio tab in winecfg it gives me the message:

There is no audio driver currently specified in the registry.

A recommended driver has been selected for you. You can use this driver or
select another driver if available.

You must click Apply for the selection to take effect.

When I hit OK on that message, winecfg briefly stays up with no menu options in the open tab, and then crashes.

It then gives me this error message:

Image

I also get this output in terminal:

Code: Select all

fixme:keyboard:X11DRV_ActivateKeyboardLayout 0x8090809, 0000: semi-stub!
fixme:keyboard:X11DRV_ActivateKeyboardLayout 0x8090809, 0000: semi-stub!
2010-04-29 23:50:28.043 wine[3716:10b] *** CFMessagePort: bootstrap_register(): failed 1103 (0x44f) 'Service name already exists', port = 0x872b, name = 'Apple MIDI Client'
See /usr/include/servers/bootstrap_defs.h for the error codes.
wine: Unhandled page fault on read access to 0x1a04001f at address 0x97519688 (thread 0009), starting debugger...
I was just wondering what was wrong and how to rectify it.
Ryan Woodsmall

Winecfg crashes with audio tab.

Post by Ryan Woodsmall »

fixme:keyboard:X11DRV_ActivateKeyboardLayout 0x8090809, 0000: semi-stub!
fixme:keyboard:X11DRV_ActivateKeyboardLayout 0x8090809, 0000: semi-stub!
2010-04-29 23:50:28.043 wine[3716:10b] *** CFMessagePort: bootstrap_register(): failed 1103 (0x44f) 'Service name already exists', port = 0x872b, name = 'Apple MIDI Client'
See /usr/include/servers/bootstrap_defs.h for the error codes.
wine: Unhandled page fault on read access to 0x1a04001f at address 0x97519688 (thread 0009), starting debugger...
http://bugs.winehq.org/show_bug.cgi?id=14052

There's an old bug on this that looks to have been recently re-opened. Not sure what the status is in Git, but I've seen this on Wine 1.1.43 compiled from source. You can use winetricks to manually choose the coreaudio driver, and standard sound output should still work as expected:

winetricks sound=coreaudio
Adriasil
Level 2
Level 2
Posts: 13
Joined: Tue Mar 16, 2010 12:27 pm

Post by Adriasil »

Thanks, I'll try that.
Adriasil
Level 2
Level 2
Posts: 13
Joined: Tue Mar 16, 2010 12:27 pm

Post by Adriasil »

I tried it and something tells me it didn't go entirely well. It's probably the fact I'm still getting mono output, and the DirectSound not being implemented....

Code: Select all

/opt/local/var/macports/software/wine-devel/1.1.43_0+darwin_9/opt/local/bin/winefile ; exit;
fixme:wave:wodDsCreate DirectSound not implemented
fixme:wave:wodDsCreate The (slower) DirectSound HEL mode will be used instead.
fixme:wave:AudioUnit_SetVolume independent left/right volume not implemented (1.000000, 1.000000)
fixme:wave:wodDsCreate DirectSound not implemented
fixme:wave:wodDsCreate The (slower) DirectSound HEL mode will be used instead.
fixme:wave:wodDsCreate DirectSound not implemented
fixme:wave:wodDsCreate The (slower) DirectSound HEL mode will be used instead.
fixme:wave:AudioUnit_SetVolume independent left/right volume not implemented (1.000000, 1.000000)
fixme:wave:wodDsCreate DirectSound not implemented
fixme:wave:wodDsCreate The (slower) DirectSound HEL mode will be used instead.
Ken Thomases

Winecfg crashes with audio tab.

Post by Ken Thomases »

On Apr 29, 2010, at 8:30 PM, Adriasil wrote:
I tried it and something tells me it didn't go entirely well. It's probably the fact I'm still getting mono output, and the DirectSound not being implemented....
fixme:wave:wodDsCreate DirectSound not implemented
fixme:wave:wodDsCreate The (slower) DirectSound HEL mode will be used instead.
fixme:wave:AudioUnit_SetVolume independent left/right volume not implemented (1.000000, 1.000000)
These are normal and benign. DirectSound works, it's just emulated. The lack of independent volume control for left and right channels does not imply mono output. If you're getting mono output, that's due to something else.

Regards,
Ken
Adriasil
Level 2
Level 2
Posts: 13
Joined: Tue Mar 16, 2010 12:27 pm

Post by Adriasil »

Ah, thanks a bunch!
Charles Davis

Winecfg crashes with audio tab.

Post by Charles Davis »

On 4/29/10 7:30 PM, Adriasil wrote:
I tried it and something tells me it didn't go entirely well. It's probably the fact I'm still getting mono output, and the DirectSound not being implemented....
That's normal.

Code:
/opt/local/var/macports/software/wine-devel/1.1.43_0+darwin_9/opt/local/bin/winefile ; exit;
fixme:wave:wodDsCreate DirectSound not implemented
fixme:wave:wodDsCreate The (slower) DirectSound HEL mode will be used instead.
DirectSound is just not implemented. Someone was working on it, but I
don't know how that's coming.
fixme:wave:AudioUnit_SetVolume independent left/right volume not implemented (1.000000, 1.000000)
This just means the volume can't be set independently. You can still
output stereo sound and it will come out stereo.

Chip
Locked