ASIO4ALL unter VISTA ?

eNergy

eNergy

Registriert
11.09.06
Beiträge
91
Reaktionen
0
Punkte
112
Hallo Leute hab Vista 32.bit auf meinen Rechner installiert und
es läuft alles auch ziehmlich rund.
Das einzige Problem das unter CUBASE 3 (Gerätekonfiguration)der ASIO4ALL
Treiber einfach leer bleibt.
Habe eine Realtek HD mit R 156 Treiber.
Könnte es daran ligen wie der audio stream unter DirectX 10-9 ex
verarbeitet wird.
Gibt es eine VIsta 32-64 Alternative zum ASIO4ALL.DE Treiber ??

Hi everyone,

As this covers a lot of information, I have split it into 3 posts, so please make sure to read all 3 posts before responding.



Summary:



In this article, we would like to address questions and concerns raised by customers regarding compatibility of Creative audio products with Windows Vista.



In general, issues relating to Creative audio products may be divided into one of four categories:



1. The Windows Vista audio engine runs faster than the Windows XP audio engine did, and Vista has tighter requirements on audio buffer position accuracy than XP did. This exposed low level driver bugs that we had not been seen before.

Issues that may be encountered:
Audio dropouts, distortions that only happen once in a while, constant distortions, or audio/video synchronization drift that only happens after several hours of watching movies.
Status:

We are working daily to address issues in this category, and we have recently published “beta” drivers for Vista for some of our products that address these. Please don’t hesitate to contact us if you find our latest beta drivers continue to exhibit symptoms such as those described

2. The Vista audio architecture changes the way per-stream audio processing works, which required us to write new software to support this

Issues that may be encountered:
CMSS no longer works on audio streams from the OS.
Status:
Features based on Windows XP architecture must be rewritten to conform to the new Vista architecture, and we have a team of software engineers, project managers and testers dedicated to this task in order to provide our customers the same seamless audio experience under Windows Vista that they enjoyed under Windows XP.

3. The Vista audio architecture disables DirectSound 3D hardware acceleration; resulting in legacy DirectSound based EAX game titles not working as they did in XP.

Issues that may be encountered:
Could range from loss of EAX functionality in EAX enabled games to a complete game incompatibility, depending on how the game title was authored. This would only happen with games that render 3D audio using DirectSound, it should not affect games that render 3D audio using OpenAL.

(Note: There is a known bug due to a change to Vista which confuses an OpenAL component. A proper fix in progress, but a workaround is to copy c:\windows\system32\ct_oal.dll into the doom3 folder and rename it to OpenAL32.dll)


Status:
These issues cannot be addressed by the Creative audio driver, because the functionality was purposely removed by the operating system. We look forward to game titles moving away from DirectSound and toward OpenAL for fully optimized Creative 3D audio hardware and technology support.

4. Bugs in Vista.

Issues that may be encountered:
Vista itself is still in the final stages of testing, and is not yet at code-freeze. Also, the user mode audio stack is nearly 100% brand new software. As a result, there are indeed issues whose root cause is in the operating system.
Status:
We are working closely with Microsoft to alert them of any and all issues like this, and we have found them to be cooperative with us in bringing them to resolution.



Details:

The purpose of this article is to explain the changes to how audio is handled under Windows Vista, and how we are planning to address this



What level of compatibility exists between XP and Vista drivers?

Default Driver Model: WDM

As with Windows NT, Windows 2000 and Windows XP, the foundation of Windows Vista is the Windows NT kernel, and as with Windows 2000 and Windows XP, the default driver model is the Windows Driver Model (WDM). This portion of Vista has remained remarkably unchanged with Windows XP.
WDM Port Class Models

Also, as with Windows 2000 and Windows XP, the foundation of any WDM audio device driver has remained unchanged. All PCI WDM audio drivers are based upon the WDM audio “Port Class” and Windows Vista supports all Windows XP “Mini Port” models, including “Wave Cyclic” and “Wave PCI”. Also, all USB / 1394 WDM audio drivers are based upon “Stream Class” or “A/V Stream”.
WDM Kernel Streaming

As a result of this, any WDM driver that was built under Windows XP should generally work as is under Windows Vista without a recompile. Also, any user mode programs that use “WDM Kernel Streaming” (such as Cakewalk SONAR) in Windows XP would work exactly the same under Windows Vista, when run on top of the driver that was built for Windows XP.




So what has changed?

New Miniport Type: Wave RT

Microsoft has added a third “Miniport” type for PCI products that is unique to Vista, which is called “Wave RT” (http://www.microsoft.com/whdc/device/audio/wavertport.mspx). The promise of Wave RT is that user mode applications could completely govern streams of audio without any code execution in the kernel during runtime.

1:Wave RT allows the user mode application direct access to the data in the memory that is mapped to the audio hardware DMA engine

2:Wave RT allows the application to poll the current position in the DMA memory window that the hardware is accessing.
3: Wave RT also supports the notion of a hardware generated clock notification event, similar to the [g=12]ASIO[/g] API, so that applications need not poll for current position if they don’t want to.


Wave RT is the new standard, but WavePCI and WaveCyclic are still supported

Microsoft did realize that it would be difficult to get other vendor’s legacy audio drivers moved over to the WaveRT model, because a lot of legacy hardware cannot support this model. So, Microsoft still continues to support the two “Miniport” driver models that were used in Windows XP (“WavePCI” and “WaveCyclic”), which means “WaveRT” drivers are not strictly required under Vista.



Audio in Windows Vista (2)


If the new Wave RT format is not strictly required, why do I need new drivers for Vista?

The similarities start and end at the kernel miniport level. After that, everything changes.

What has changed dramatically in Windows Vista is the main OS audio subsystem. This is the part of the OS that handles audio coming from multiple user mode client applications, audio mixing, processing and sample rate conversion. What has also changed radically in Windows Vista is the emulation of the Windows standard audio APIs, Windows Multimedia Extensions (“MME”) and “DirectSound”.

vista1wq7.jpg


In this model, both DirectSound and MME may be emulated over the OS audio stack, which was mostly implemented in kernel mode. A low level “Kernel Mixer” (or kMixer) is used to facilitate multiple user mode client applications, audio mixing, processing and sample rate conversion. However, also note that a direct path from DirectSound straight to the audio driver also existed. This was the path that facilitated audio acceleration in DirectSound. Proprietary APIs such as [g=12]ASIO[/g] and OpenAL [g=46]bypass[/g] all of that and go straight to the lowest level of the driver.

The Windows Vista audio architecture could be depicted as follows:

vista2tx8.jpg


This is derived from a diagram from this website: http://blogs.msdn.com/larryosterman/archive/2006/03/07/545451.aspx, which is an article from the web log of a Microsoft audio developer.


Audio Flow through Vista - introducing WASAPI and APOs

The above picture depicts audio flow through Microsoft’s new user mode audio architecture. An application communicates through this path through what is depicted as Sessions, and these Sessions are programmed through what Microsoft calls Windows Audio Session API (or WASAPI).

http://windowssdk.msdn.microsoft.com/en-us/library/ms679162.aspx

The other blocks represent various points where some form of host based audio processing happens (sample rate conversion, mixing, effects). Host based processing modules are also referred to as Audio Processing Objects, or APOs. The above link has more details on the meaning of the other acronyms.



More User Mode, Less Kernel Mode
In this model, nearly all blocks in the picture above run in user space. The only portion of this architecture that runs in kernel mode is represented by the single block called “Audio Driver”, and it contains only a minimal amount of Microsoft code. It contains only the Microsoft “Port Class” Driver, the Vendor “Miniport” driver and Vendor Hardware Abstraction [g=85]Layer[/g] portions depicted in the XP driver architecture diagram. Note that the Windows “Kernel Mixer” (or kMixer) is completely gone.


Changes to Direct Sound and MME implementation

Windows “Direct Sound” and “MME” emulation have also radically changed. These emulation layers now sit exclusively on top of the depicted Vista audio architecture, and are basically “Session” instances. “Session 1” could be looked at as an MME application going through a Microsoft emulation [g=85]layer[/g], and “Session 2” could be looked at as a DirectSound 3D application going through a Microsoft emulation [g=85]layer[/g].


Reasons for Change

Microsoft had stated reasons for these kinds of radical changes that go beyond “the need to change things”. Reasons include moving as much software out of kernel mode as possible thereby minimizing bug checks (in layman’s terms “BSODs”), developing an architecture to make debugging audio problems in applications easier, and supporting a whole new generation of Digital Rights Management (http://www.microsoft.com/whdc/device/stream/output_protect.mspx) A further description for the rationale of these changes may be seen in this Microsoft developer’s web log entry: (http://blogs.msdn.com/larryosterman/archive/2005/09/19/471346.aspx)



Audio in Windows Vista (3)



Impacts of Change

These changes had a number of unfortunate side effects.

kMixer dependency issues

First, while all efforts were made to work with all legacy XP audio drivers, the global graph communication to the audio driver does differ from the way kMixer communicated to the audio driver, in terms of timing and processing blocks and demands for more precise reporting of sample position. As a result, any legacy XP audio driver whose behavior depended on kMixer specific behavior could break in Vista, if Vista subjects the driver to an unexpected condition. This was ultimately the root cause of several bugs found in Audigy and X-Fi drivers for Vista, such as audio dropouts, distortions that only happen once a while, constant distortions, or audio/video synchronization drift that only happens after several hours of watching movies. These bugs are being addressed now.

Pre-mixed Audio

Second, with the way this new emulation structure, all “MME” and “Direct Sound” applications will ultimately result in pre-mixed PCM audio that is sent to the driver in one and only one format (in terms of sample rate, bit depth and [g=190]channel[/g] count), and that format is governed by a control panel setting that Microsoft would prefer be configured only by the end user. This eliminates any opportunity for hardware to accelerate sample rate conversion or to take full advantage of advanced SRC technologies such as the ones used in the X-Fi product (http://www.soundblaster.com/products/x-fi/technology/lastinfo/ssrc.asp) when using standard operating system audio.

Direct Sound 3D HW Acceleration - RIP

In addition, unlike Windows XP, there is no “Direct” path from DirectSound applications to audio drivers or hardware at all. DirectSound is emulated into a Windows audio “Session”, as depicted here:
vista3ds7.jpg


The diagram below puts this in perspective in the context of the entire audio architecture.
Note that DirectSound implementation is circled in red:
vista4yh6.jpg


Note that the Vista DirectSound emulation sends mixed audio content to the standard OS audio path, and offers no “direct” path to hardware at all. Since the whole point of DirectSound acceleration is to allow hardware to process unmixed audio content, DirectSound cannot be accelerated in this audio model.


Game Audio Issues

This results in bugs such as loss of EAX functionality in games to complete incompatibility, depending on how the game title was authored and how well the Microsoft DirectSound emulation code works. In addition, given this model any and all bugs that are exclusive to DirectSound games could not possibly be due to Creative audio drivers or any other IHV (Independent Hardware Vendors) audio drivers.


Custom Audio Effect APOs

Vista does support insertion points for custom audio effects (http://www.microsoft.com/whdc/device/audio/sysfx.mspx, http://www.microsoft.com/whdc/device/audio/vista_sysfx.mspx) depicted above as APO1 and APO3. Forthcoming Creative audio products will use APOs to implement certain features, but these custom effects do not allow acceleration of DirectSound because as mentioned above they receive mixed content, not unmixed content.


Creative supported hardware acceleration for Gaming and Music Creation
The good news here is that, as depicted above, Vista still permits proprietary user mode to kernel mode driver stacks, which means that Creative products may continue to support non Microsoft driver models and technologies such as
OpenAL (http://www.openal.org) for 3D gaming,
SoundFont Management System (http://www.soundfont.com)
[g=12]ASIO[/g] (http://www.steinberg.net) for audio content creation.
As was the case in Windows XP, these audio interfaces will continue to be thin pedal-to-the-metal APIs that allow user mode applications to access hardware features directly.


OpenAL - the key to optimum audio for gaming in Windows Vista
OpenAL continues to be the most widely used API for optimum 3D sound in PC gaming and the direct to hardware path offered by this API is the only way to access the hardware accelerated audio processing offered by cards in the Sound Blaster range.
Combined with Creative’s high precision SRC technology, patented 3D audio spatialization and EAX technology, multi-[g=190]channel[/g] / multi-speaker rendering, EAX 5.0 [g=3]DSP[/g] effects, Crystalizer and CMSS technology, Creative’s Sound Blaster X-Fi continues to be THE ultimate audio solution for Windows gaming.
While the Microsoft architecture works very well for simple multimedia applications such as music listening and moving watching, these technologies will continue to offer optimal performance with minimal CPU impact in gaming and music creation applications for years to come.


...sorry habs leider nur auf englisch gefunden.
Es zwar hier um den EAX von Creative.
Aber vielleicht hat [g=12]ASIO[/g] ähnliche Probleme ??
 
Hat keiner `ne Idee ?
 
erbarmen :roll:
*push
 
Das ist der Hauptgrund, warum man als schlauer User eine neue Windows Version nicht derart hektisch installiert.
Wegen ASIO4All ----> schreib doch mal bei denen ins Forum.

Hier im Forum hat sich Vista beim Großteil der User noch nicht "niedergelassen".
 
Hehe, ja. Ich habs mir natürlich auch sofort installiert, als es im msdnaa erschienen ist. Aber wie ben schon sagt: Als schlauer User lässt man sich noch ein schönes, eingerichtetes XP und zusätzlich ein Linux am laufen :D
Komisch irgendwie, habe das vista jetzt schon vor knapp zwei wochen installiert und noch garnicht richtig ausprobiert, einfach keine Zeit.
Vielleicht schaff ichs ja am Wochenende mal. Und wenn ichs dann hinbekommen habe, meine Soundkartentreiber dort zu installieren, werd ich auch mal den ASIO4ALL austesten. Ich meld mich dann nochmal...
 
@bensommerfeld danke für deine Antwort werde mal im A4A Forum nach
einem fix suchen ,nitchtsdestotrotz finde ich die neuen Möglichkeiten
unter DX10 interessant wenn sie denn irgendeinmal umgesetzt werden würden !!!
 
Hi,

Also bei mir hat das mit Vista, Cubase un den Asio4All prima funktioniert. Keinerlei Probleme und Latenzen wie von XP gewohnt.

Überlege mir gerade ob ich nicht auf Vista umsteigen soll.

Cheers...
 
Hallo Strohmann welche Soundkarte hast du am Start ???
 
jeder neue rechner der jetzt verkauft wird, wird mit vista ausgeliefert, besonders für user mit komplexer hard und software sind probleme einfach vorprogrammiert!

letzte woche haben wir für unser studio zwei neue rechner gekauft, vista lag dem system bereits auch schon bei, da wir mit samplitude nur probleme hatten, wurde vista kurzerhand einfach in die mülltonne geworfen!
win-xp verrichtet doch wunderbar seinen dienst, es wird außerdem dafür, laut microsoft auch noch bis 2014 den support geben, daher ist vista für uns musiker z.z. absolut uninteressant... .
außerdem verdiene ich mit der musik mir meine brötchen und da habe ist durchaus wichtigere aufgaben und probleme zu bewältigen, al#s sich mit dem megaproblem "VISTA" herumzuärgern!

im übrigen wird die systemvoraussetzung des rechners, um überhaupt sinnvoll mit vista arbeiten zu können von microsoft als sehr hoch gefordert, hier merkt man recht schnell, dass vista sehr, sehr hungrig ist, letztendlich verbleibt recht wenig performance für ein sinnvolles arbeiten mit musikprogrammen (falls diese überhaupt korrekt laufen) und das, obwohl man einen sehr leistungsfähigen und aktuellen rechner einsetzt, eigentlich eine frechheit!!!

sorry, ist aber meine ganz persönliche meinung und erfahrung dazu. :roll:
 
Code:
...win-xp verrichtet doch wunderbar seinen dienst, es wird außerdem dafür, laut microsoft auch noch bis 2014 den support geben, daher ist vista für uns musiker z.z. absolut uninteressant... .
außerdem verdiene ich mit der musik mir meine brötchen und da habe ist durchaus wichtigere aufgaben und probleme zu bewältigen, al#s sich mit dem megaproblem "VISTA" herumzuärgern!

... also laut WinFuture.de
wird der Support 2008-9 eingestellt ! :( !!

MS Roadmap

...oder doch bis 2014 laut PC-WELT ...oder 2010 laut Testticker
...binn ein wenig verwirrt :eek:
...wann läuft den nun der Support aus ??
 
Hallo,

es gibt bei Microschrott zwei Arten von Support. Den vollen Support, bei M$ "mainstream support" genannt, gibt es nur noch bis april 2009. Dann startet der sogenannte "Extended support", bei dem es nur noch sicherheitskritische updates geben wird - das reicht im Normalfall aber vielen Usern.

ursprünglich war geplant, da unterschiede zwischen XP Home und Pro zu machen, jetzt bekommen die Home versionen aber doch genauso lang support wie die Pro versionen.

Ich werde erst auf Vista umsteigen, wenn ich Hard- oder Software BRAUCHE, die NUR unter VISTA läuft.
 
laut meiner anfrage beim support, entsprechende email antwort lautete: "2014".

doch ich bin sehr vorsichtig mit den aussagen von microsoft, zu viel wurde schon verkündet und ausgesagt, aber nicht alles wurde immer im hause MS eingehalten!
doch das kennen wir bereits schon.. .
 
Hallo Strohmann welche Soundkarte hast du am Start ???

Benutze mein Onboard-sound. Reicht mir im Moment noch.

Cheers..
 

Oft gelesene Themen

Zurück
Oben