Deferred Settings

Changes to 3-D sound buffer and listener settings such as position, velocity, and Doppler factor will cause the DirectSound mixer to remix its mix-ahead buffer, at the expense of CPU cycles. To minimize the performance impact of changing 3-D settings, use the DS3D_DEFERRED flag in the dwApply parameter of any of the IDirectSound3DListener or IDirectSound3DBuffer methods that change 3-D settings. Then call the IDirectSound3DListener::CommitDeferredSettings method to execute all of the deferred commands with a single remix of the mix-ahead buffer.

Note  Any deferred settings are overwritten if your application calls the same setting method with the DS3D_IMMEDIATE flag before it calls IDirectSound3DListener::CommitDeferredSettings. For example, if you set the listener velocity to (1,2,3) with the deferred flag and then set the listener velocity to (4,5,6) with the immediate flag, the velocity will be (4,5,6). Then, if your application calls the IDirectSound3DListener::CommitDeferredSettings method, the velocity will still be (4,5,6).