http://bugs.winehq.org/show_bug.cgi?id=14717
Summary: resampled sound is horrible
Product: Wine
Version: 1.0.0
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: patrakov(a)gmail.com
The problem is reported because the default sampling frequency in wine (as
configured by winecfg) is 48000 Hz, while apps generally want 44100 Hz.
However, the resampling code in dlls/dsound/mixer.c, function
DSOUND_MixToTemporary(), if I read it correctly, is simply a zero-order hold,
which is completely unacceptable. Even if I don't read it correctly, the
quality is horrible with 48000 Hz and OK with 44100 Hz (tested with MP3 files
in foobar 2000). Please change the resampling method to something more
scientific, e.g., by using libsamplerate.
--
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=17443
Summary: Launchpad Enhanced gets stuck in a loop trying to
download updates
Product: Wine
Version: 1.1.15
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winsock
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ehoover(a)mines.edu
Created an attachment (id=19522)
--> (http://bugs.winehq.org/attachment.cgi?id=19522)
WINEDEBUG="+all,-relay" near dialog-generating location
LPE gets stuck in a loop trying to download updated files and re-launch. A
dialog appears (.NET 2.0?) that says (at the beginning of the loop):
Main: Unable to read data from the transport connection: Unknown error
(0x271e).
Address: http://lpe.ocdsoft.com/installer/LaunchpadEnhanced.exe
File:C:\Program Files\Launchpad Enhanced\LaunchpadEnhanced.exe.temp
The error appears to be from passing an invalid memory location to WSARecvFrom
after the original buffer runs out (see abbreviated log attached). Note that
the messages:
0009:trace:winsock:WS2_recv recvmsg sta: (ptr) (ptr) (length)
are from adding a trace to output hdr.msg_iov, hdr.msg_iov->iov_base, and
hdr.msg_iov->iov_len. This message was added to explore why the errno was being
set to 14 (EFAULT), which the recvmsg man page indicates is due to a pointer
being outside the application address space.
The issue might be some form of regression (since LPE worked on Wine 1.0-rc2),
but since the application has an automatic updater it's possible that the
application code changed.
--
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=18130
Summary: VB APPS: Using edit controls context menu crashes
application.
Product: Wine
Version: 1.1.19
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: martinmnet(a)hotmail.com
Vb applications crash when I click on any selection from edit windows context
menu.
Reason:
menu control is sending WM_COMMAND msg to edit control and shouldnt be.
The VB runtime subclass' the edit control and dies when receiving WM_COMMAND
with the sent wParam.
Solution.
Change menu.c approx line 2561 to check if window is appropriate before sending
WM_COMMAND, i.e. not edit class windows.
Replace edit.c function EDIT_WM_Command
static void EDIT_WM_MenuSelect(EDITSTATE *es, INT code, INT id, HWND control)
{
static INT SelectedItem;
if (id != 0) {
/* Save the currently selected item and return */
SelectedItem = id;
return;
}
switch (SelectedItem) {
case EM_UNDO:
SendMessageW(es->hwndSelf, WM_UNDO, 0, 0);
break;
case WM_CUT:
SendMessageW(es->hwndSelf, WM_CUT, 0, 0);
break;
case WM_COPY:
SendMessageW(es->hwndSelf, WM_COPY, 0, 0);
break;
case WM_PASTE:
SendMessageW(es->hwndSelf, WM_PASTE, 0, 0);
break;
case WM_CLEAR:
SendMessageW(es->hwndSelf, WM_CLEAR, 0, 0);
break;
case EM_SETSEL:
EDIT_EM_SetSel(es, 0, (UINT)-1, FALSE);
EDIT_EM_ScrollCaret(es);
break;
default:
ERR("unknown menu item, please report\n");
break;
}
}
and change edit.c line 5195
case WM_COMMAND:
EDIT_WM_Command(es, HIWORD(wParam),
LOWORD(wParam),(HWND)lParam);
to
case WM_MENUSELECT:
EDIT_WM_MenuSelect(es, HIWORD(wParam),
LOWORD(wParam),(HWND)lParam);
--
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=18620
Summary: Braid puzzle problem
Product: Wine
Version: 1.1.22
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gabriel.gandul22(a)gmail.com
This is a minor bug but it bothers a lot. First of all let me say that this
game runs really good on wine. But the only problem is when you try to complete
the puzzle. In this part the mouse becomes unresponsive and it goes to the
bottom of the screen to the right.
It's just impossible to beat that part. It happens in every puzzle.
--
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=12623
Summary: yBook: doesn't display page textures
Product: Wine
Version: 0.9.59.
Platform: PC
URL: http://www.spacejock.com/yBook.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: laur.olb1(a)gmail.com
Created an attachment (id=12253)
--> (http://bugs.winehq.org/attachment.cgi?id=12253)
Output from running Wine v0.9.59 with yBook v1.5.26
when the latest version of yBook, version 1.5.26, is run, the page textures are
not displayed. Instead, just a black background is shown. Also, if the "hide
desktop" feature is used, the texture is displayed across the whole screen,
however the program is not shown on top of the texture as it is in Windows.
Based on the output, may be a problem in ole32.dll? Attempting to use a native
version of ole32.dll failed, Wine would not even launch the 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.
http://bugs.winehq.org/show_bug.cgi?id=13091
Summary: Input error compiling c++ sources with mingw
Product: Wine
Version: 1.0-rc1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: onido89(a)gmail.com
Hi,
i've searched for this bug but i don't know if it just exist, anyway i wanted
to tell you that i've found a bug while i was compiling a source code in c++
language, that was made like this:
--------------------------------------
#include <stdio.h>
int main()
{
int i=1;
char s[40],c;
while(i!=0)
{
printf("Number-->");
scanf("%d%c",&i,&c);
printf("String->");
gets(s);
}
}
--------------------------------------
When i try to use it in winecmd it doesn't get exactly the inputs method (it
overlay the string method, it seems to ignore it...). Anyway try it for
yourself if you want and i hope it will be fixed for 1.0.
Great work anyway, this is the best emulator that i've ever used ;)
Have a nice day, and keep rollin!
GTOnizuka
--
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=17907
Summary: build broken in dlls/ws2_32/tests/sock.c on OpenBSD 4.5
Product: Wine
Version: 1.1.18
Platform: PC
OS/Version: OpenBSD
Status: NEW
Keywords: download, source, testcase
Severity: blocker
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
gcc -c -I. -I. -I../../../include -I../../../include -D_REENTRANT -fPIC -Wall
-pipe -fno-strict-aliasing -Wwrite-strings -Wpointer-arith -I/usr/local/include
-I/usr/local/include -I/usr/local/include/libpng -o sock.o sock.c
In file included from sock.c:28:
../../../include/ws2tcpip.h:60: error: conflicting types for `socklen_t'
/usr/include/sys/types.h:163: error: previous declaration of `socklen_t'
*** Error code 1
Going for the easy way out and using #define USE_WS_PREFIX just breaks things
worse (see attached).
Looks a bit similar to 16661, so some more includes may help, but filing a bug
for now.
Kai, perhaps you could take a look? If you need SSH access, let me know.
--
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=18290
Summary: Curse Client crashes since Curse.com enabled their
premium service
Product: Wine
Version: 1.1.20
Platform: PC
URL: http://www.curse.com/client/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eiffel56(a)gmail.com
Created an attachment (id=20820)
--> (http://bugs.winehq.org/attachment.cgi?id=20820)
Output of wine with crashing Curse Client right after logging in
The Curse Client crashes since Curse.com enabled their premium
service(http://www.curse.com/articles/curse-en-news/462154.aspx). This is not a
regression in wine since it worked with exactly the same version(1.1.20) a few
hours ago. I also tested 1.1.14 and current git -> exactly the same.
Steps to reproduce:
1. Create a Curse.com account
2. Download and install the Curse Client
3. Create a new folder(e.g "WoW"). Create a folder called "Interface" in it,
and another folder called "Addons" in the Interface folder. Create a new file,
write something in it, and copy it as "Wow.exe" and "Launcher.exe". This is
needed to make the Curse Client think you have World of Warcraft installed. The
Client does also crash if you have a real World of Warcraft installation.
4. Open the Curse Client, click Manage Games->Add Game. Set Label to something,
Type to "World of Warcraft" and Install Path to the fake Wow folder you just
created.
5. Watch it crashing. If you start it up again, you will notice that it'll
crash again right after logging in.
I guess this is caused by that new ad that is shown in the client itself since
the premium service was enabled. It is not shown if you haven't registered at
least one game in Curse Client. It will not crash if you haven't added a game.
I will also attach the output of wine, which strengthens this theory.
--
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=16923
Summary: sscanf function missing hh modifier
Product: Wine
Version: 1.1.10
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pcjc2(a)cam.ac.uk
The sscanf function in the Wine msvcrt runtime doesn't support the "hh"
modifier, as described here:
http://www.opengroup.org/onlinepubs/009695399/functions/sscanf.html
I've not tested or read the source thoroughly enough to see if any other of the
standard modifiers are missing from the Wine implementation.
Since I'm not sure whether Micosoft's msvcrt.dll supports this modifier (and
have no Windows box working to test at the moment), I appreciate this might be
closed "not a bug" if the behaviour is infact compatible with Microsoft's.
I'm developing applications on linux, cross-compiling and using wine to test.
The lack of an hh modifier caused memory corruption and some strange behaviours
in the app. We've changed our code to avoid the problem, but I thought I'd do
due diligence and mention it here in case it turned out to be a problem for you
guys.
Best regards
Peter Clifton
--
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=18284
Summary: Crash durring Microsoft Money 2006 startup
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew(a)mleczko.net
Here you can find full traceback: http://pastebin.com/f5cab2ae1
--
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.