Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
266 views

Need Resources on XAPO Effects for XAudio2

I've been working with XAudio2 lately. After going over the samples, example code, and more-sparse-than-I'd-like documentation available from Microsoft and the MSDN, I've found that there aren't any ...
5
votes
2answers
472 views

Play a single note with DirectMusic

I'm using DirectMusic for MIDI playback in an application I'm developing. Does anyone know if it's possible to use DirectMusic to play individual notes? Currently, I'm converting an in-memory data ...
1
vote
1answer
93 views

How to play same sound repeatedly with XAudio2?

I need to play single sound repeatedly in my app, for example, a gunshot, using XAudio2. This is the part of the code I wrote for that purpose: public sealed class X2SoundPlayer : IDisposable { ...
1
vote
1answer
219 views

How do I check/change my sound card's sample rate?

I'm playing around with XAudio2 to send PCM format waves to my soundcard, and I encountered a problem which made me think about this question. I created a .csv file with MATLAB of a sine wave at 440 ...
1
vote
2answers
1k views

Displaying a video in DirectX

What is the best/easiest way to display a video (with sound!) in an application using XAudio2 and Direct3D9/10? At the very least it needs to be able to stream potentially larger videos, and take ...
1
vote
1answer
297 views

Strange File Not Found errors with mmioOpen

Ive been playing around with XAudio2 but have encountered some strange problems with the mmioOpen function For some reason it seems to fail with MMIOERR_FILENOTFOUND, even though the file is there, ...
0
votes
1answer
96 views

XAudio2 in Qt Creator

I'm currently working on an audio project with XAudio2 and I've been using MSVC++ Express 2010. I wrote some basic functionalities, and I thought I'd try making a UI with Qt, so I followed the steps ...
0
votes
1answer
115 views

Pointer to first byte of a vector<float>

The pointer to the audio buffer of the XAUDIO_BUFFER structure in XAudio2 is defined as BYTE *pAudioData. When I was using 16-bit Integer PCM, this is what my program looked like: void ...
0
votes
0answers
111 views

XAudio2 - Sample not playing from 0 when re-triggered from memory

I'm new with XAudio2 but was playing around with the XAudio2BasicSound example (Win7 & XP) and by modifying it slightly I have it loading in a .wav file, reading the loop information and putting ...
0
votes
1answer
22 views

Can XAPO filters be applied globally?

I was looking into Microsoft XAudio2 XAPO and I guess it is only for audio streams that are sent through XAudio2, or can it be applied as a system-wide audio filter?
0
votes
1answer
262 views

XAudio2, starting/stopping loops?

How can I start/stop audio looping in IXAudio2SourceVoice? Basically it has a start/stop which starts and pauses the audio execution as well as an ExitLoop() function which stpos the audio once it ...
0
votes
3answers
3k views

Audio libraries for digital signal processing in C#

My problem is this: I'm developing a reasonably small application (which needs to be able to grow in the future, but for now, limited functionality will suffice) which recieves audio (16bit mono @ ...
0
votes
1answer
369 views

XAudio2 and variable bitrate audio

How do I go about correctly playing audio files which may have a variable bitrate (and even a variable number of channels in some cases), such as ogg/vorbis? XAudio expects this information in a ...