Re: Does auto-apt work to get wine dependencies in source code?

2013-08-26 Thread Maarten Lankhorst
Op 25-08-13 14:09, Susan Cragin schreef: Hello, Was thinking of running some tests but the list of dependencies on the website seems outdated, apt-get build-dep does not work. Is that with the ubuntu-wine ppa enabled?

re: [PATCH (try 2)] dsound: Copy SetFormat format more directly if we're not in PRIMARYWRITE mode

2013-05-29 Thread Maarten Lankhorst
NAK. + HeapFree(GetProcessHeap(), 0, device-primary_pwfx); + device-primary_pwfx = DSOUND_CopyFormat(passed_fmt); Copy to a tmp buffer first and return E_OUTOFMEMORY instead of reassigning primary_pwfx to NULL? ~Maarten

[PATCH for valgrind] coregrind: implement GS override for arch_prctl on linux

2013-01-30 Thread Maarten Lankhorst
Allows wine64 to run in valgrind! Apply with -Np0. :D Yes I know that %gs is still zero on linux amd64. Details details.. Signed-off-by: Maarten Lankhorst maarten.lankho...@ubuntu.com --- Index: coregrind/m_translate.c

winetestbot back online, for now

2013-01-19 Thread Maarten Lankhorst
Hey, It looks like the vmware licensing issues are resolved, so all testbot vm's are online again. I hope the replacement testbot is coming along nicely, because winetestbot is still scheduled to go permanently offline in may. ~Maarten

Re: [PATCH] dsound: rework ugly mixer logic

2013-01-01 Thread Maarten Lankhorst
Op 31-12-12 17:59, Andrew Eikum schreef: On Sat, Dec 29, 2012 at 01:24:03AM +0100, Maarten Lankhorst wrote: +if(!maxq){ +/* nothing to do! */ +LeaveCriticalSection(device-mixlock); +return; } This was removed in 8ba4090fc304993. It breaks

Re: [PATCH] dsound: rework ugly mixer logic

2013-01-01 Thread Maarten Lankhorst
Op 31-12-12 20:01, Andrew Eikum schreef: On Mon, Dec 31, 2012 at 07:03:31PM +0100, Maarten Lankhorst wrote: Op 31-12-12 17:59, Andrew Eikum schreef: On Sat, Dec 29, 2012 at 01:24:03AM +0100, Maarten Lankhorst wrote: + if(!maxq){ + /* nothing to do

Re: dsound: use event based threads, v2

2012-12-24 Thread Maarten Lankhorst
Op 21-12-12 11:59, joerg-cyril.hoe...@t-systems.com schreef: Maarten, +hres = IAudioClient_GetStreamLatency(device-client, period); +device-sleeptime = period_ms * 5 / 2; +ret = WaitForSingleObject(dev-sleepev, dev-sleeptime); Although it's a minor point, as we're

Re: dsound: use event based threads, v2

2012-12-24 Thread Maarten Lankhorst
Op 21-12-12 18:44, joerg-cyril.hoe...@t-systems.com schreef: Hi, Maarten Lankhorst answered: [...] I wonder why you insist on using GetStreamLatency as the basis of your timeout computations instead of GetDevicePeriod. Because I'm using it later on in the rework to tell how much to queue

Re: winepulse test data review

2012-12-21 Thread Maarten Lankhorst
Op 04-12-12 14:28, joerg-cyril.hoe...@t-systems.com schreef: Hi, Maarten Lankhorst wrote: Actually in winepulse, sleep / 12000 (8 ms I guess?) ms would work, no sleep at all works too, Yes, I wanted to go no further than 8ms below the 10ms period limit. it was just the mixing of various

Re: [PATCH] dsound: Use event based threads

2012-12-10 Thread Maarten Lankhorst
Op 04-12-12 17:26, joerg-cyril.hoe...@t-systems.com schreef: Hi, Maarten Lankhorst wrote: Alsa's native period is ~ 22ms (1024 samples / 44100 or 48000) with dmix despite claiming it to be otherwise.. What I don't understand is why you talk about ALSA at this level. DSound talks

Re: winepulse test data review

2012-12-03 Thread Maarten Lankhorst
Op 03-12-12 15:42, joerg-cyril.hoe...@t-systems.com schreef: Hi, Maarten Lankhorst kindly posted mmdevapi test results for render and capture gathered using his winepulse driver: http://www.winehq.org/pipermail/wine-devel/2012-October/097602.html render.c:1199: padding 1250 position 51

Re: [PATCH] dsound: Use event based threads

2012-12-03 Thread Maarten Lankhorst
Op 03-12-12 14:59, joerg-cyril.hoe...@t-systems.com schreef: Hi, Maarten Lankhorst queried: Bump, anything wrong with this patch? Here's my 0.0$ ... (standard DSound disclaimer here...) Using mmdevapi's events in DSound is basically TRT. Then, the DSound mixer will be synchronized

Re: [PATCH] dsound: Use event based threads

2012-12-03 Thread Maarten Lankhorst
Op 03-12-12 17:59, Andrew Eikum schreef: (...) I think the best solution is to have dsound call into the system openal to perform multichannel mixing and 3D processing. (...) Andrew ... Must print this out on poster format, and frame this above my bed.. ~Maarten

Re: [PATCH] dsound: Use event based threads

2012-11-29 Thread Maarten Lankhorst
Op 21-11-12 19:16, Maarten Lankhorst schreef: Signed-off-by: Maarten Lankhorst maarten.lankho...@ubuntu.com Bump, anything wrong with this patch?

Re: [PATCH 3/6] dsound: create a primary_pwfx separately from pwfx

2012-11-13 Thread Maarten Lankhorst
Hey, Op 19-10-12 15:29, Andrew Eikum schreef: Patches 1 and 2 in this series look fine. I have a series of patches similar to this one in my dsound multichannel branch. This patch seems to do too much at once. When I did this cleanup, I split it up into four patches: 1) Allocate the device

Re: DSound/winepulse review

2012-10-26 Thread Maarten Lankhorst
Added wine-devel to cc Op 26-10-12 13:12, joerg-cyril.hoe...@t-systems.com schreef: Maarten, I'll try and come up with a review of your winepulse patches yet I'm not familiar with the PA API. Regarding your dsound ones, I'm sorry I've not enough experience with the DSound API to be really

Re: [PATCH 5/6] dsound: rework ugly mixer logic

2012-10-24 Thread Maarten Lankhorst
Op 24-10-12 12:52, joerg-cyril.hoe...@t-systems.com schreef: Hi, Maarten Lankhorst wrote: For example Skyrim with a 36 ms stream latency will just buffer in more data to compensate instead. But it can't do it if you report that it's fine to feed data every 5 ms. Please elaborate. Every

Re: [PATCH 5/6] dsound: rework ugly mixer logic

2012-10-22 Thread Maarten Lankhorst
Op 22-10-12 17:42, Andrew Eikum schreef: On Sat, Oct 20, 2012 at 12:03:55AM +0200, Maarten Lankhorst wrote: Op 19-10-12 15:54, Andrew Eikum schreef: Mostly good cleanup in this one. Some thoughts below... On Tue, Oct 16, 2012 at 02:06:29PM +0200, Maarten Lankhorst wrote: diff --git a/dlls

Re: [PATCH 5/6] dsound: rework ugly mixer logic

2012-10-22 Thread Maarten Lankhorst
Op 19-10-12 15:54, Andrew Eikum schreef: Mostly good cleanup in this one. Some thoughts below... On Tue, Oct 16, 2012 at 02:06:29PM +0200, Maarten Lankhorst wrote: diff --git a/dlls/dsound/dsound_private.h b/dlls/dsound/dsound_private.h index feef787..7817b88 100644 --- a/dlls/dsound

Re: [PATCH 4/6] dsound: Use event based threads

2012-10-19 Thread Maarten Lankhorst
Op 19-10-12 15:40, Andrew Eikum schreef: I like it. Before I can give a sign-off, I need to run it through my usual battery of tests on all the platforms. I'll do that after patch 3 gets figured out. Some thoughts below... On Tue, Oct 16, 2012 at 02:06:28PM +0200, Maarten Lankhorst wrote

Re: [PATCH 3/6] dsound: create a primary_pwfx separately from pwfx

2012-10-19 Thread Maarten Lankhorst
Hey, Op 19-10-12 15:29, Andrew Eikum schreef: Patches 1 and 2 in this series look fine. I have a series of patches similar to this one in my dsound multichannel branch. This patch seems to do too much at once. When I did this cleanup, I split it up into four patches: 1) Allocate the device

Re: [PATCH] winmm: Load winealsa if winepulse is found

2012-10-17 Thread Maarten Lankhorst
Op 17-10-12 20:59, Austin English schreef: On Tue, Oct 16, 2012 at 5:10 AM, Maarten Lankhorst m.b.lankho...@gmail.com wrote: From: Maarten Lankhorst maarten.lankho...@canonical.com Fixes midi on winepulse --- dlls/winmm/lolvldrv.c | 5 - 1 file changed, 4 insertions(+), 1 deletion

Re: [PATCH] winepulse.drv: Add PulseAudio driver

2012-07-04 Thread Maarten Lankhorst
Hey Joerg, 2012/6/26 joerg-cyril.hoe...@t-systems.com: Hi, If you don't paste all the mmdevapi tests with the fix in my git tree, it's a regression. I don't want to see held_Frames because it's a shadow buffer. If winmm and dsound don't work without it, they're wrong, fix those. I won't

Re: [PATCH] winepulse.drv: Add PulseAudio driver

2012-06-16 Thread Maarten Lankhorst
currently not handling exclusive because there are no good tests for it. and hooray_cb ? If this is going to be accepted (likely, sadly) I want to have this added to the commit: Rejected-by: Maarten Lankhorst m.b.lankho...@gmail.com ~Maarten PS: Still sad that you chose to reject my original

Fwd: Student Proposals Now Being Accepted for Google Summer of Code

2012-03-26 Thread Maarten Lankhorst
I'm still missing some people who haven't signed up as mentor yet. To all students, I hope you discussed your ideas on the mailing list and/or irc, good luck submitting your proposal! :D Originele bericht Onderwerp: Student Proposals Now Being Accepted for Google Summer

Re: Updating GSoC proposal

2012-03-20 Thread Maarten Lankhorst
Hey Jacek, Op 20-03-12 10:43, Jacek Caban schreef: Hi all, GSoC is starting this year and, if we want to have good applications, we need to update our proposals. Usually the most attention is directed into adding new ones, while we keep obviously bad (or just bad IMO) proposals on the page.

Fwd: [Wine (a project of Software Freedom Conservancy)] Your organization application has been accepted.

2012-03-16 Thread Maarten Lankhorst
huzzah! Originele bericht Onderwerp: [Wine (a project of Software Freedom Conservancy)] Your organization application has been accepted. Datum: Fri, 16 Mar 2012 17:44:28 + Van:no-re...@google-melange.appspotmail.com Aan:m.b.lankho...@gmail.com Your

Re: What happens upon mmdevapi capture overrun on native?

2012-03-13 Thread Maarten Lankhorst
behaviour A with a few quirks. Please visit bug #30147 for details. Thanks for figuring it out. winepulse v10 carries the fixed behavior, diff with v9 attached below for completeness. commit 9173c8dd53438eeb395ff7ac66498bdbb383474f Author: Maarten Lankhorst m.b.lankho...@gmail.com Date: Tue

Re: use assert etc. in Wine dlls? What is better?

2012-03-13 Thread Maarten Lankhorst
Hey, Op 13-03-12 15:05, joerg-cyril.hoe...@t-systems.com schreef: Hi, Maarten's wine-pulse contains several instances of assert() I've been thinking about adding a bit of protection against inconcsistencies within mmdevapi code too. There are two variants that could be applicable depending

Re: What happens upon mmdevapi capture overrun on native?

2012-03-09 Thread Maarten Lankhorst
Hey Joerg, Op 09-03-12 17:46, joerg-cyril.hoe...@t-systems.com schreef: Hi, Maarten Lankhorst wrote in winepulse: Add pulseaudio driver, v9: - Reworked capture logic to always capture, since that seems to be the case on windows, when stopped we simply drop whole packets, but keep firing

Re: Users with native w2k/wxp/Vista/w7, please test (CreateTimerQueue)

2012-03-06 Thread Maarten Lankhorst
Hey Joerg, Op 06-03-12 11:21, joerg-cyril.hoe...@t-systems.com schreef: Hi, If you can run MS-Windows without virtual machine, please visit testbot https://testbot.winehq.org/JobDetails.pl?Key=17175 download the 32 or 64bit executable and execute it. I can't really trust vm machines for

Re: introduction

2012-03-04 Thread Maarten Lankhorst
Hey Tarun, Op 04-03-12 07:05, tarun bansal schreef: Hello everyone!! I am a newbie in the world of open source development. But i am very eager to participate in the GSOC2012. I have a good command over c,c++. Can someone guide me on how to proceed further and start fixing the bugs... You

Re: GSOC 2012

2012-03-02 Thread Maarten Lankhorst
Hey Yogesh, Op 02-03-12 04:37, Yogesh Agrawal schreef: Respected Sir, I am very much interested in doing project in this organisation. I am interested in doing project which involves 3D Game development, Graphics rendering. I developed one 3D game using Microsoft Windows XNA and Visual

Re: [PATCH] winepulse: Add pulse driver, v8

2012-03-01 Thread Maarten Lankhorst
Hey Joerg, Op 01-03-12 14:39, joerg-cyril.hoe...@t-systems.com schreef: Hi, Maarten Lankhorst wrote: - Align buffer size to a multiple of period size How can you pass the tests with that? It's wrong with both capture (annoyingly IMHO) and playback. I only really need it for capture

Re: [PATCH] winepulse: Add pulse driver, v8

2012-02-29 Thread Maarten Lankhorst
Hey Chris, Op 29-02-12 06:58, Chris Robinson schreef: On Tuesday, February 28, 2012 5:32:13 PM Maarten Lankhorst wrote: + * This is basically the same as the pa_threaded_mainloop implementation, + * but that cannot be used because it uses pthread_create directly + * + * pa_threaded_mainloop_

Re: AW: Major mmdevapi and winmm audio bugs

2012-02-29 Thread Maarten Lankhorst
Hey Joerg, Having actually finished the pulseaudio implementation and trying to fix some fallout. Op 29-02-12 16:28, joerg-cyril.hoe...@t-systems.com schreef: Hi, Maarten Lankhorst wrote: For capture I plan to just add 2 queues, one for readable packets, and one for packets that can

Re: [PATCH] winepulse: Add pulse driver, v8

2012-02-29 Thread Maarten Lankhorst
Op 29-02-12 17:29, joerg-cyril.hoe...@t-systems.com schreef: Hi, Chris is right about the format. The shared mode mixer ought to return FLOAT(32), and it always appears to return the extensible format as a consequence. For weird reasons, wineoss may return integer formats, but that's

Re: [PATCH] winepulse: Add pulse driver, v8

2012-02-28 Thread Maarten Lankhorst
Hey Dmitry, Op 28-02-12 18:42, Dmitry Timoshkov schreef: Maarten Lankhorst m.b.lankho...@gmail.com wrote: From 8aa5903b1ee75a6c538d7e1d99560bcb39a47ed2 Mon Sep 17 00:00:00 2001 From: Maarten Lankhorst m.b.lankho...@gmail.com Date: Thu, 28 Apr 2011 09:45:18 +0200 Subject: [PATCH 10/10

Re: Major mmdevapi and winmm audio bugs

2012-02-27 Thread Maarten Lankhorst
Hey Joerg, Op 27-02-12 19:22, joerg-cyril.hoe...@t-systems.com schreef: Hi, Maarten Lankhorst wrote (partly in a former thread): R. thread priority -- no Pro Audio / Real-Time priority Not going to happen, ever. AJ nuked all my attempts at it, [...] Or just fix things properly and use

Re: Major mmdevapi and winmm audio bugs

2012-02-24 Thread Maarten Lankhorst
Hey Joerg, Op 24-02-12 13:28, joerg-cyril.hoe...@t-systems.com schreef: Hi, instead of Wine Weekly News (WWN, any taker?) you get monthly audio news. The surprising thing is: it looks like most audio bugs remaining in bugzilla are from the pre-mmdevapi era and have not been updated since

Re: Fwd: Google Summer of Code 2012 DEADLINE: 2012-02-27

2012-02-11 Thread Maarten Lankhorst
Hey Jeremy, Op 10-02-12 20:23, Jeremy White schreef: Hi Folks, It's that time of year again - summer of code is going to start up soon. Maarten, you've been coordinating things for us for a while now - are you still game? Would you like help? Anyone else willing to volunteer to help admin

Re: Fwd: Google Summer of Code 2012 DEADLINE: 2012-02-27

2012-02-11 Thread Maarten Lankhorst
Hey Dylan, Op 11-02-12 18:48, Dylan Smith schreef: On Sat, Feb 11, 2012 at 9:50 AM, Maarten Lankhorst m.b.lankho...@gmail.com mailto:m.b.lankho...@gmail.com wrote: I have my doubts about these for example: - Richedit windowless mode - There's no way this can be a student project

Re: brainstorm: what are the audio stumbling blocks?

2012-01-27 Thread Maarten Lankhorst
Op 26-01-12 12:59, joerg-cyril.hoe...@t-systems.com schreef: Hi, What are the areas that would have the most impact if fixed? You are invited to participate and share your thoughts. I believe we need to distinguish winmm/dsound/mmdevapi/OS. mmdevapi: A. lock-less timer callback design, bug

Re: brainstorm: what are the audio stumbling blocks?

2012-01-27 Thread Maarten Lankhorst
Hey Joerg, Op 27-01-12 16:35, joerg-cyril.hoe...@t-systems.com schreef: Maarten, thank you for participating! Provide a hidden API in mmdevapi? No need, you know how mmdevapi behaves, you can write it in such a way without adding latency by using GetCurrentPadding or the clock. I don't

Re: Rethinking WineConf

2012-01-18 Thread Maarten Lankhorst
Hey, Op 17-01-12 22:01, Dan Kegel schreef: On Tue, Jan 17, 2012 at 12:43 PM, Jeremy Whitejwh...@codeweavers.com wrote: So, exploring #3 a bit further - what if we asked for our own track within FOSDEM 2013? (I presume that would be February 2013 in Brussels) It would let us all get

Re: Compiling Wine without prelink

2011-11-27 Thread Maarten Lankhorst
Hey Roger, On 11/27/2011 10:29 PM, Roger Cruz wrote: What is the proper way to ask the configure script not to use 'prelink' on the generated shared libraries? I don't want to remove the prelink from my development platform but just tell the configurator to ignore it. Prelink is only used

Re: [Wine] WineHQ database compromise

2011-10-13 Thread Maarten Lankhorst
Hey, On 10/12/2011 12:46 AM, Josh Juran wrote: On Oct 11, 2011, at 3:37 PM, Conan Kudo (ニール・ゴンパ) wrote: On Tue, Oct 11, 2011 at 3:39 PM, Josh Juran j...@iswifter.net wrote: Since bugzilla passwords were sent in cleartext anyway, I sincerely hope none of them were otherwise valuable.

Re: WineHQ database compromise

2011-10-11 Thread Maarten Lankhorst
Hey everyone, On 10/11/2011 09:13 PM, Jeremy White wrote: Hi, I am sad to say that there was a compromise of the WineHQ database system. What we know at this point that someone was able to obtain unauthorized access to the phpmyadmin utility. We do not exactly how they obtained access; it

Re: Alexandre's keynote

2011-10-03 Thread Maarten Lankhorst
Hey JWhite, On 10/02/2011 12:10 AM, Jeremy White wrote: Thanks to Jon Parshall's hard work, we have Alexandre's keynote available here: http://www.youtube.com/watch?v=2rdDvMonTnQ Remember to have your libation at hand so you can play the game... grin Cheers, Jeremy Nice work, is

Re: Favorite bug: deadlock preventing backtraces?

2011-09-30 Thread Maarten Lankhorst
Hey Dan, On 09/29/2011 06:00 AM, Dan Kegel wrote: On one of my boxes, if I run winmm/midi.ok in a loop, it will eventually deadlock/crash ( http://bugs.winehq.org/show_bug.cgi?id=28388 ): err:ntdll:RtlpWaitForCriticalSection section 0x110060 heap.c: main process heap section wait timed out

Re: using (or not) blocking mode with OSS4

2011-09-26 Thread Maarten Lankhorst
Hey Joerg, On 09/26/2011 02:57 PM, joerg-cyril.hoe...@t-systems.com wrote: Hi, I've had a glance at the OSS4 mmdevapi logs attached to bug #28056. Among others, it appears that every renderer iteration takes way too much time. One possible explanation is that OSS write() takes a lot of

Re: IPv6 issue on TestBot?

2011-09-22 Thread Maarten Lankhorst
Hey, On 09/14/2011 12:47 PM, Francois Gouget wrote: Connecting to https://testbot.winehq.org/ over IPv6 hangs for ages :-( This makes accessing it from my desktop very annoying. $ time wget -4 --quiet http://testbot.winehq.org/ real 0m2.150s user 0m0.000s sys 0m0.000s $ time wget -6

Re: IPv6 issue on TestBot?

2011-09-22 Thread Maarten Lankhorst
Hey, On 09/22/2011 11:25 AM, Ben Peddell wrote: On 22/09/2011 6:24 PM, Maarten Lankhorst wrote: Hey, On 09/14/2011 12:47 PM, Francois Gouget wrote: Connecting to https://testbot.winehq.org/ over IPv6 hangs for ages :-( This makes accessing it from my desktop very annoying. $ time wget -4

Re: IPv6 issue on TestBot?

2011-09-22 Thread Maarten Lankhorst
Hey, On 09/22/2011 04:54 PM, Michael Stefaniuc wrote: Per Johansson wrote: 22 sep 2011 kl. 12:14 skrev Michael Stefaniuc: Wow! /66? And that works? While the standard allows for that you should use /64 which everybody and his dog read it as that is the only thing that needs to work and the

Re: Unimplemented function?

2011-09-18 Thread Maarten Lankhorst
Hey, On 09/18/2011 12:52 PM, Luis Carlos Busquets Pérez wrote: It seems that there is a regression in wine 1.3.28. Before bi-secting, I woul dlike to understand how that can happen. Apparently PlaChessV5.exe crashes due to: wine: Call from 0x68215ca8 to unimplemented function

Update on testbot

2011-09-18 Thread Maarten Lankhorst
Hi all, I moved the windows 7 x64 vm with sp1 applied to the base pool now. This means that all submitted patches will be run on that vm as well. The original win7 vm is still available under its own name. Since all tests pass on that according to winehq tests I'm keeping it in the base pool. I

Re: Something's rotten in git today...

2011-09-15 Thread Maarten Lankhorst
Hey Dan, On 09/15/2011 02:02 AM, Dan Kegel wrote: It might be just me, but I've seen five very strange test failures today out of about 30 build/test runs. Has anybody else noticed problems? Does it happen if you try wine.git from before yesterday too? ~Maarten

Re: quartz: Fix converting between the media time and REFTIME

2011-09-14 Thread Maarten Lankhorst
Hey, On 09/14/2011 05:07 PM, joerg-cyril.hoe...@t-systems.com wrote: Hi, I've never tried to understand quartz, but I'd like to know whether quartz expects particular behaviour from the underlying winmm or mmdevapi time/position/length functions. For instance, quartz says its clocks are

Re: audio: when is a Resource temporarily unavailable?

2011-09-13 Thread Maarten Lankhorst
Hey, On 09/12/2011 02:14 PM, joerg-cyril.hoe...@t-systems.com wrote: Hi, Bug #28056 involving FreeBSD and OSS exhibits: warn:oss:AudioRenderClient_ReleaseBuffer write failed: 35 (Resource temporarily unavailable) My own notes from times as old as wine-1.1.8 show the same error with ALSA:

win7 pro sp1 x64 testbot live

2011-08-30 Thread Maarten Lankhorst
Hi all, I've added a win7 sp1 testbot, it's currently in the extra vm's pool, so it requires some extra actions to find it, but if you want to run your tests against windows 7 sp1 with ie9 installed, you should now be able to. Happy testing!! ~Maarten

Re: The sad state of audio GetPosition

2011-08-22 Thread Maarten Lankhorst
On 08/19/2011 05:10 PM, joerg-cyril.hoe...@t-systems.com wrote: Maarten Lankhorst wrote: [nice to hear from you] IMHO AudioClient_Stop must not map to snd_pcm_drop. It is more like snd_pcm_pause. Or perhaps simply lead ALSA into an underrun. afaict pause, with reset mapped to drop

Re: The sad state of audio GetPosition

2011-08-22 Thread Maarten Lankhorst
On 08/22/2011 02:13 PM, joerg-cyril.hoe...@t-systems.com wrote: Hi, These exclusive mode test failures look like nothing: render.c:1086: Test failed: GetCurrentPadding returned 576, should be 0 render.c:1092: Test failed: Position 90720 at end vs. 91296 played frames but they made me

Re: The sad state of audio GetPosition

2011-08-22 Thread Maarten Lankhorst
On 08/22/2011 05:31 PM, joerg-cyril.hoe...@t-systems.com wrote: Hi, Maarten Lankhorst wrote: exclusive mode wants you to fill the entire buffer at the same time. You're confusing this with exclusive + EVENTCALLBACK mode, which I'm not using. There are 4 combinations of shared/exclusive

Re: The sad state of audio GetPosition

2011-08-19 Thread Maarten Lankhorst
On 08/19/2011 01:30 PM, joerg-cyril.hoe...@t-systems.com wrote: Reece, I wrote the text in a hurry and forgot that Wine results are most interesting to me with my patch applied. Please use my patch with something like: WINETEST_DEBUG=3 WINEDEBUG=warn+alsa wine mmdevapi_test.exe render

Re: What gstreamer plugins are actually needed?

2011-08-19 Thread Maarten Lankhorst
On 08/20/2011 12:15 AM, Scott Ritchie wrote: I'm trying to cleanup a bit of a packaging mess whereby Wine currently pulls in 250 or so gstreamer plugins. Which ones are actually useful for applications? Do we even know? Thanks, Scott Ritchie wine-gstreamer only needs decoding and parser

Re: w9x testbot state?

2011-08-07 Thread Maarten Lankhorst
Hey James, On 08/07/2011 05:12 AM, James McKenzie wrote: On 8/3/11 7:10 AM, Maarten Lankhorst wrote: On 08/01/2011 07:12 PM, joerg-cyril.hoe...@t-systems.com wrote: Hi, what happened to the w9x test bots? I'd like them to run some kernel32 tests. Testbot says offline. They were hosted

Re: w9x testbot state?

2011-08-03 Thread Maarten Lankhorst
On 08/01/2011 07:12 PM, joerg-cyril.hoe...@t-systems.com wrote: Hi, what happened to the w9x test bots? I'd like them to run some kernel32 tests. Testbot says offline. They were hosted at Gé's house. Testbot can no longer reach them. ~Maarten

Re: Glitch-free iTunes?

2011-07-05 Thread Maarten Lankhorst
Hey, On 07/05/2011 10:49 AM, Charles Davis wrote: On 7/5/11 2:23 AM, Damjan Jovanovic wrote: On Tue, Jul 5, 2011 at 10:13 AM, Stefan Dösinger stefandoesin...@gmx.at wrote: Do we need full-fledged support for USB drivers for iTunes? I've been told in the past that all we need to do is

Re: Regression today?

2011-06-21 Thread Maarten Lankhorst
Hey Susan, On 06/21/2011 01:03 PM, Susan Cragin wrote: Susan Cragin wrote: I think a regression was introduced today. I got the following trying to run NatSpeak 11.0 with today's git. wine-1.3.22-255-g4c0c0d3 Should I do a regression test and file a bug, or is it obvious from this? Or

Re: deadlock in mmdevapi AudioClient_Stop (winealsa.drv/mmdevdrv.c)

2011-06-15 Thread Maarten Lankhorst
Hi Joerg, Op 15-06-11 10:00, joerg-cyril.hoe...@t-systems.com schreef: Hi, please try and convince me that a deadlock cannot happen. http://source.winehq.org/source//dlls/winealsa.drv/mmdevdrv.c AudioClient_Start calls CreateTimerQueueTimer which creates a new thread periodically

Re: About building test suite for Windows

2011-06-12 Thread Maarten Lankhorst
Op 12-06-11 07:54, Patrick Gauthier schreef: Hi, As I was writing my task dialog test I ran into a few problems trying to test on Windows... First, I tried building it using make crosstest but I keep getting this: $ gmake crosstest crosstest is not supported (mingw not installed?) gmake:

Re: winealsa.drv/midi.c: Adds the midi MTC Quarter Frame messages support.

2011-06-12 Thread Maarten Lankhorst
Hey Stephane, Op 12-06-11 10:26, BACRI Stephane schreef: Hi Maarten. Thx for your answer. Joerg's comment was on the code surrounding the patch, not on the patch. That's why I did not understand that I had to correct this code. Shall I propose a new patch with these correction? Or an

Re: winealsa.drv/midi.c: Adds the midi MTC Quarter Frame messages support.

2011-06-11 Thread Maarten Lankhorst
Hello, 2011/6/11 BACRI Stephane stephaneba...@gmail.com: Hi all. Was there something incorrect in this patch I submitted in may, or in the way I submitted it? Perhaps should I have mentioned that it had been tested in several ways with hardware software. joerg commented on this 11th may:

Re: Ge (Greg) van Geldorp

2011-06-10 Thread Maarten Lankhorst
Sad news indeed. His work on getting winetestbot integrated into wine was amazing. He was also nice every time I talked to him. I'll miss him. Hierbij mijn steunbetuiging aan zijn nabestaanden. ~Maarten

Re: Tahoma Font License

2011-05-25 Thread Maarten Lankhorst
Hi mark, 2011/5/25 Mark Page romb...@hotmail.co.uk: I am a bit confused by the Wine tahoma license: Wine Tahoma Regular ... GNU Lesser General Public License 2.1 It would be useful to add the font to the ClanLib SDK resources (ClanLib has a zlib style license) It is not clear how a font

requesting review and/or testing for directsound changes

2011-04-26 Thread Maarten Lankhorst
Hi all, with http://repo.or.cz/w/wine/multimedia.git and http://repo.or.cz/w/openal-soft.git you should be able to get the benefits of openal-soft's mixer while continuing to use whatever driver you want for mmdevapi. As a result directsound will only support openal-soft, but multi channel is

Re: Try to implement my first stub function - AbortPrinter() - (try 4)

2011-04-15 Thread Maarten Lankhorst
Hello, Op 14-04-11 10:37, Loïc Maury schreef: Hello, From what was said from the last comments, I have modified the code and I have added the test patch. What do you think ? You're doing all the HeapFrees manually, is there a destruction function you can use? Cheers, Maarten

Summer of Code 2011 is on!

2011-03-19 Thread Maarten Lankhorst
Hi all, As you may have known wine has been accepted for summer of code 2011 as a mentoring organization. As such the wine project is now looking for students to participate this year with wine. On our wiki page[1] you can find some ideas, but if you come up with your own idea you will have a

Re: lifetime of the MIDI/MIXER/WAVEOPENDESC structure?

2011-03-16 Thread Maarten Lankhorst
Hey, Op 16-03-11 16:03, joerg-cyril.hoe...@t-systems.com schreef: Hi, MSDN is silent about the lifetime of the MIDI/MIXER/WAVEOPENDESC structure that is deliverred via the W/MODM_OPEN/MXM_OPEN message to the winmm drivers (WAVEOOPENDESC is not even documented for MS-Windows (not CE) anymore).

Re: winmm DriverCallback with 0 CALLBACK_WINDOW

2011-03-16 Thread Maarten Lankhorst
Hey, Op 16-03-11 15:52, joerg-cyril.hoe...@t-systems.com schreef: Hi, Testbot job #9994 proves that Wine and native differ in their handling of a 0 CALLBACK_WINDOW handle. Wine's PostMessage redirects a 0 handle to PostThreadMessage(currentThreadID()), while native finds no notification on

Re: kernel32: CreateProcessA should not call CreateProcessW directly

2011-03-16 Thread Maarten Lankhorst
Hi Dan, Op 16-03-11 20:06, Dan Kegel schreef: Does that work when compiling with -O3 ? Maybe you need a noinline attribute, http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html#Function-Attributes I don't think it will ever be inlined because of the calling convention differences.

Re: winealsa.drv: Waveout rewrite to allow multiple waveopens

2011-03-08 Thread Maarten Lankhorst
Hi Joerg, Op 08-03-11 12:36, joerg-cyril.hoe...@t-systems.com schreef: Maarten, let me apologize for barely taking the time to look at the extra patches you write outside of the main git tree. I hope other people find more time to try them out with real apps and report on their findings.

Re: mountmgr.sys: start detecting USB devices

2011-03-03 Thread Maarten Lankhorst
Hi Damjan, Op 02-03-11 18:52, Damjan Jovanovic schreef: Changelog: * mountmgr.sys: start detecting USB devices I'd love to get this kind of work in, but since libhal has been deprecated for a while, wouldn't it be better to use libudev directly instead of expanding our usage of libhal?

Re: Fwd: Applications for Mentoring Organizations Now Being Accepted

2011-02-28 Thread Maarten Lankhorst
Hi Dan, Op 28-02-11 21:41, Dan Kegel schreef: So, shall I do the honors? I've already been applying wine for summer of code this year, haven't finished it up though, you could always join as second backup admin. However I'd like everyone to have another look at our

Re: Valgrind --malloc-fill=A5 --free-fill=DE crashes Wine

2011-02-21 Thread Maarten Lankhorst
-fill is harmless, -free-fill causes havoc currently. Am I the only one using or seeing this (Ubuntu Lucid)? It's most likely a valgrind/wine bug, does this patch work? Cheers, Maarten From 344c2234deb65b514bf9f10b5e894bde7c49976c Mon Sep 17 00:00:00 2001 From: Maarten Lankhorst m.b.lankho

[rfc] dsound: decrease sound latency

2011-02-11 Thread Maarten Lankhorst
Hi all, Please test this and let me know if it's causing any problems in sound playback, preferably with media applications and games, any feedback would be appreciated. The patch won't fix existing problems, it should just decrease the audio lag. As such I would prefer only to receive

Re: [PATCH 01/13] dsound: New sample rate converter core functions.

2011-02-11 Thread Maarten Lankhorst
Hi Krzysztof, Op 11-02-11 12:16, Krzysztof Nikiel schreef: 2011/2/11 Dmitry Timoshkovdmi...@codeweavers.com: Krzysztof Nikielkni...@gmail.com wrote: You can't send Makefile changes separately from added/removed files, a patch should not add dead code. Could you explain dead code, all 13

Re: quartz: Start DirectSound renderer as soon as possible.

2010-11-28 Thread Maarten Lankhorst
Hi Erich, 2010/11/21 Erich Hoover ehoo...@mines.edu: I've been working on a set of patches (compiled together and attached for your convenience) to fix the background music in Fallout 3 (Bug #24478) and I've run into some trouble recently with commit 64b14c0ecdd13530a92ff636c451523a99253a0b. 

Re: quartz: Start DirectSound renderer as soon as possible.

2010-11-28 Thread Maarten Lankhorst
Hi Erich, 2010/11/28 Erich Hoover ehoo...@mines.edu: On Sun, Nov 28, 2010 at 8:28 AM, Maarten Lankhorst m.b.lankho...@gmail.com wrote: ... There are other ways to handle this. What you're doing is wrong. I'm guessing the assert(!pSample); is wrong, if it's flushing it ought to return all

Re: mciavi should be rewritten using the AVIFile interface

2010-11-17 Thread Maarten Lankhorst
Hi Joerg, 2010/11/17 joerg-cyril.hoe...@t-systems.com: Hi, MSDN documents (and I verified) that the MCIAVI allows to access an open AVIFile object via the special name @NN...NN (decimal address). Conversely, open @-1024 type avivideo alias a crashes native at address c000 -- except on

Re: Where in the code does wine read fonts?

2010-11-08 Thread Maarten Lankhorst
Hi Per, On 04-11-10 14:38, Per Olesen wrote: Hi! I am trying to figure out how wine reads fonts on startup but am having a little trouble. I checked out the source and found a lot of good stuff in winex11.drv/xfont.c, but I am not sure this is actually the code, that gets executed when my

Re: [PATCH 2/4] quartz: Fix PullPin_EnumMediaTypes

2010-11-07 Thread Maarten Lankhorst
Hi Eich, 2010/11/7 Erich Hoover ehoo...@mines.edu: Is there some reason you chose to add an additional function for this, rather than fill in pPinImpl-pin.pFuncsTable?  I ask because I was working on this issue last night and submitted an attachment to Bug #24782 for people to try:

Re: Purist keyword?

2010-10-30 Thread Maarten Lankhorst
Hi Austin, 2010/10/30 Austin English austinengl...@gmail.com: On Saturday, October 30, 2010, Shachar Shemesh shac...@shemesh.biz wrote: On 30/10/10 19:25, Austin English wrote: I meant bugs that only occur by manually removing native dlls. The report summaries are usually clear enough, I was

Re: Possible patch for #12706

2010-06-28 Thread Maarten Lankhorst
Hi Jeff, 2010/6/25 Jeff Cook j...@deserettechnology.com:  This is a patch that makes WINE detect snd_usb_audio mics and assign them a mixer and working master control. See bug #12706 for more information about this problem: http://bugs.winehq.org/show_bug.cgi?id=12706 I wasn't able to test

Re: Question about video capture and rendering and encoding in wine

2010-06-23 Thread Maarten Lankhorst
Hello, 2010/6/23 shenyue shen...@magima.com.cn: Hi everyone, Previously I post this question on wine-user forum, seems nobody answered/interested, so I post it here. Hope somebody give me a hand :) I have some questions about wine video capture andrendering. I'm a newbie to wine, and am

Re: damnit, X is crashing *every* time I run 3dmark2000

2010-06-22 Thread Maarten Lankhorst
Hi Scott, 2010/6/22 Scott Ritchie sc...@open-vote.org: On 06/21/2010 08:48 PM, Dan Kegel wrote: And always after test 17 of 20, I think.  I updated to the latest nvidia driver supported by Ubuntu 10.04, no change. The crash persists even with WINEDEBUG=+d3d,+d3d7,+synchronous. I guess my

Re: [PATCH] atl: Do not fail on Wine64

2010-06-13 Thread Maarten Lankhorst
Hi Marcus, 2010/6/13 Marcus Meissner mar...@jet.franken.de: Hi, The size is 248 on Wine64 ... (expected 240), so we miss perhaps a pointer or some alignment. Its not fully clear what. It at least does not crash when ignoring the size change. Seems wrong to me, does it allow size 240 on

Re: configure.ac: when checking for ALSA, look for snd_pcm_recover() instead of snd_pcm_hw_params_get_access()

2010-06-11 Thread Maarten Lankhorst
Hello Andrew, On 11-06-10 10:18, Andrew Nguyen wrote: On Sun, Jun 6, 2010 at 4:03 PM, Maarten Lankhorst m.b.lankho...@gmail.com wrote: Is snd_pcm_recover the only function missing? If so change it to dlsym, and add a copy of snd_pcm_recover to wine if it cannot find the libalsa one

Re: Three year sever outstanding bug requiring minor fix

2010-06-09 Thread Maarten Lankhorst
Hello Fakename, 2010/6/9 velociraptor Genjix aphi...@hotmail.com: Hey, Please look into this issue, http://bugs.winehq.org/show_bug.cgi?id=15118 It seems like a fairly trivial fix which renders this application useless. A detailed description of the implementation needed is provided in that

Re: Gecko64 status

2010-06-07 Thread Maarten Lankhorst
Hi Jacek, 2010/6/5 Jacek Caban ja...@codeweavers.com: Hi all, I'd like to share with you progress on gecko64. First of all, I think that it was never said in public, although I've been asked about it: there won't be gecko64 for 1.2 release. I think we will have Gecko release in the second

  1   2   3   4   5   >