http://bugs.winehq.org/show_bug.cgi?id=33722
Bug #: 33722
Summary: Stereo IMA ADPCM encoding in WINE produces loud static
instead of sound
Product: Wine
Version: 1.3.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msacm32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Nachanon_Vetjasit(a)hotmail.com
Classification: Unclassified
I've been using Microsoft Sound Recorder to convert PCM (44100Hz 16-bit Stereo)
wave file to IMA ADPCM (44100Hz 4-bit Stereo), and saved to a wave file.
When I played the file in MPlayer, instead of the desired sound,
it played a loud static on the right channel, and a mashup of both
original channels on the left channel.
Mono encoding didn't affected though.
Other codecs are fine, except PCM (crashes; bug #26388), MS ADPCM
and MP3 (unavailable).
To reproduce:
- Start Microsoft Sound Recorder (use Windows XP version or below):
$ wine sndrec32.exe
- Open some PCM wave file that is 44100Hz 16-bit Stereo.
- Go to File > Properties
- Click "Convert Now"
- Choose "IMA ADPCM" codec with 44100Hz 4-bit Stereo configuration.
- Click "OK"
- Save it to another wave file. (No matter play button is grayed out or not)
- Play that wave file with any player that supports IMA ADPCM.
You'll hear a loud static on the right channel, and mashed-up sound
on the left.
Another thing is after encoded, Sound Recorder saw a doubled length of audio,
MPlayer also saw so. When played, playhead moved twice the normal speed.
(Which is a strange behavior)
Note: I filed this as msacm32 since Sound Recorder is using it
directly for encoding.
Using WINE 1.3.8 (source) on Debian GNU/Linux 5.0 (i386: Intel Pentium 4
2.66GHz)
WINE Audio Driver: ALSA 44100Hz 16bit (Full Hardware Acceleration)
WINE installed without GStreamer support.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14937
Summary: Astroplanner crash
Product: Wine
Version: 1.1.2
Platform: PC
URL: http://www.ilangainc.com/astroplanner/reguserdl/V1.6.1/A
stroPlannerWindows.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: s9999(a)penguinmail.com
Created an attachment (id=15529)
--> (http://bugs.winehq.org/attachment.cgi?id=15529)
Segment of relay output
I'm trying to get Astroplanner to run with Wine. The author has a low opinion
of Linux users being willing to pay for his software. So it only runs natively
on Windows and OSX. I'd like to prove him wrong, but I need to get it running
first. I'm doing this on an up to date Ubuntu 8.04 laptop. I've installed
Wine from the repository. I've attached a segment of the relay output around
what I think is causing the problem. Recreating the problem is very easy.
Download Astroplanner from
http://www.ilangainc.com/astroplanner/reguserdl/V1.6.1/AstroPlannerWindows.….
It runs in demo mode until registration. There is no installation process, so
just run it under Wine. After a lot of initialization, the application comes
up. Create a new plan when that screen comes up. Open the Edit,
Preferences... window. The problem occurs when you close that window. This
seems quite reliable. The problem seems to be an unhandled page fault in
ntdll, but I really don't know if that is the real problem. Thanks.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44175
Bug ID: 44175
Summary: stack corruption and crash with OpenSSH port
Product: Wine
Version: 2.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ossman(a)cendio.se
Distribution: ---
We have a port of OpenSSH to Windows that work well on a real Windows system,
but crashes under Wine. I've tried to pinpoint the issue but I get very weird
stack behaviours under winedbg. I've attached a binary with debug symbols.
A simple "ssh.exe server.example.com" crashes. Stepping shows that the crash is
on this code:
sshconnect.c:641
> if (sscanf(server_version_string, "SSH-%d.%d-%[^\n]\n",
> &remote_major, &remote_minor, remote_version) != 3)
However the stack is already corrupt when this code is reached.
Stepping earlier in the program causes it to crap out when doing this call:
ssh.c:1095
> direct = option_clear_or_none(options.proxy_command) &&
options.proxy_command is NULL before the function is called, but once
option_clear_or_none() the stack is bonkers with local variables and the call
trace messed up. However it still executes a lot of code correctly after this,
so it might just be a winedbg bug.
Not sure how to proceed at this point.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44130
Bug ID: 44130
Summary: Possible access to unintended variable in
"dlls/comctl32/imagelist.c" line 299
Product: Wine
Version: 2.22
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: petrum(a)gmail.com
Distribution: ---
While experimenting with a CodeSonar plugin we develop, we noticed a
potential bug in file "dlls/comctl32/imagelist.c" line 299 function
add_with_alpha
mask_info->bmiHeader = info->bmiHeader;
mask_info->bmiHeader.biBitCount = 1;
mask_info->bmiHeader.biSizeImage = mask_width * height;
//299 line is the next one
if (!(mask_bits = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, /*HERE*/
info->bmiHeader.biSizeImage )))
goto done;
if (!GetDIBits( hdc, hbmMask, 0, height, mask_bits, mask_info, DIB_RGB_COLORS
)) goto done;
Shouldn't you access mask_info (instead of info)?
Regards,
Petru Florin Mihancea
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=42307
Bug ID: 42307
Summary: [download] knownfolder_GetRedirectionCapabilities
needs to be implemented for Temple+
Product: Wine
Version: 2.0
Hardware: x86
URL: https://github.com/GrognardsFromHell/TemplePlus/releas
es
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
Assignee: wine-bugs(a)winehq.org
Reporter: farmboy0+winehq(a)googlemail.com
Distribution: ---
The config application for the Temple+ mod uses a library that calls
knownfolder_GetRedirectionCapabilities.
It crashes on startup because the method currently returns E_NOTIMPL;
To implement this correctly wine needs its known folder definition expanded by
the redirection capabilities as this is currently completely missing.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44180
Bug ID: 44180
Summary: TMIDI Player: Crash on startup with a stack overflow
Product: Wine
Version: 3.0-rc2
Hardware: x86-64
URL: https://www.vector.co.jp/soft/win95/art/se038910.html
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: kakurasan(a)gmail.com
CC: julliard(a)winehq.org
Regression SHA1: 01676c5dd6f9fb61b9c4e52595f6e75e21050009
Distribution: ---
TMIDI Player (TMIDI.EXE) crashes on startup with a stack overflow since Wine
3.0-rc1.
"git bisect" says 01676c5dd6f9fb61b9c4e52595f6e75e21050009 is the first bad
commit.
$ sha1sum tmidi_3_7_3.exe
b3e0d159b8e68dce899e1b325ac7087945a148e2 tmidi_3_7_3.exe
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=29871
Bug #: 29871
Summary: drawing in photoshop cs5 is almost impossible
Product: Wine
Version: 1.4-rc2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lenashou(a)gmail.com
Classification: Unclassified
launch photoshop cs5
open a new document (white background)
select the brush tool (black color for example)
try to draw something with the mouse.
most of the time, only the first click work, drawing the shape of the brush.
and sometime.. for whatever reason, you can draw something, as long as you keep
the left mouse button pushed.
the problem is not only on the brush, but on every tool where you need to keep
the left mouse button pushed.
this bug wasn't there in wine 1.3.28.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27106
Summary: EuroDEEM: Fails to start
Product: Wine
Version: 1.3.19
Platform: x86
URL: http://re.jrc.ec.europa.eu/energyefficiency/eurodeem/e
urodeem%20version%201_0_17/IMSSA_EuroDEEM.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=34548)
--> (http://bugs.winehq.org/attachment.cgi?id=34548)
Error messages
Steps to reproduce:
1) remove ~/.wine
2) winetricks gecko mfc42
3) install EuroDEEM
4) wine IMSSA.exe
Behaviour:
See attachment.
Expected behaviour:
I should be able to start application.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43940
Bug ID: 43940
Summary: Runtime error: Invalid floating point operation in
Dys-Vocal2 installer
Product: Wine
Version: 2.19
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: ---
This error window comes up while starting the installer in Staging, then exits.
The error is not present in wine-2.19.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33318
Bug #: 33318
Summary: 3DMark2001 SE: upgrading to Wine 1.5.27 reduces
performance score by 20%
Product: Wine
Version: 1.5.27
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vernetzt(a)mail.ua
Classification: Unclassified
Created attachment 44068
--> http://bugs.winehq.org/attachment.cgi?id=44068
Screenshots with example scores for Wine 1.5.27 and Wine 1.4.1
I'm running Linux Mint 13 x86_64 with kernel 3.5.0-26-generic and X.Org Server
1.13.0 on my laptop (ThinkPad X61s with Intel X3100 graphics, see [1]). Before
upgrading Wine from 1.4.1 version to version 1.5.27 using the Ubuntu Wine PPA
[2] I decided to run 3DMark to see if the upgrade affected performance. I then
ran 3DMark after upgrading Wine. The result was an unexpected, consistent 20%
drop in the score.
The scores (averaged from three trials) were as follows:
Wine 1.4.1: 2614
Wine 1.5.27: 2080
I'll see if this can be reproduced on a machine with a different graphics chip.
[1] http://www.thinkwiki.org/wiki/Category:X61s
[2] http://www.ubuntuupdates.org/ppa/wine?dist=precise
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.