Tagged Questions

5
votes
2answers
249 views

SDL_Mixer MIDI Volume issues on Windows Vista/7

I'm not actually well versed in C++ or SDL_Mixer, but I'm asking this question anyway on behalf on the Doom community. Put simply, nobody writing Doom source ports can seem to figure out how to ...
3
votes
2answers
374 views

Running music as SDL_Mixer chunks

Currently, SDL_Mixer has two types of sound resources: chunks and music. Apart from the API and supported formats limitations, are there any reasons not to load and play music as a SDL_Chunk and ...
2
votes
1answer
108 views

SDL_Mixer: crash Mix_FreeMusic();

I'm working on my project in SDL, with SDL_mixer. Everything sounds ok, but when I attempt to quit, my app crash. I think that it's related to Mix_FreeMusic function (I figured that out after using a ...
1
vote
1answer
284 views

C++ SDL Mixer Mix_Music : incomplete type is not allowed

whenever I try to create Mix_Music instance, I get this error: "incomplete type is not allowed". However, I need to get the address of the pointer music before calling Mix_LoadMUS(file); Code: ...
1
vote
1answer
222 views

I have an unintended delay in playing a Mix_Chunk

So I am trying to learn SDL and creating a small game. When the user presses the space bar, it should play a sound. This works, but the sound takes about .5 seconds to play... How would I fix this? ...
0
votes
0answers
38 views

SDL Mixer No available audio device

This is what I have and I keep getting no available audio devices when trying to run the program. By the way I'm on ubuntu 11.04. #include <iostream> #include <stdio.h> #include ...
0
votes
0answers
45 views

SDL_Mixer problem with sound being copied and played anew every second

I am on Windows 7 Ultimate 64-bit using VS2010 and version 1.2.11 of the SDL_Mixer files. I'm able to load, play and pause chunks using my code (right now I'm using a three minute song to test it), ...
0
votes
1answer
88 views

Audio bug crashing my C++ program

I'm writing a very simple game with C++ and SDL/SDL_mixer. The game uses some simple audio functions that play sound effects when something happens, and my program has been working fine until now. At ...
0
votes
1answer
111 views

playing encrypted files using SDL_Mixer

I have some encrypted mp3 files that I would like to play from my program using SDL_Mixer. All the documentation I've come across have only shown how to load music by specifying a path and file name, ...
0
votes
1answer
162 views

SDL. Current music position

I load my music track using SDL_mixer function: Mix_Music * SDLCALL Mix_LoadMUS(const char *file); For synchronization with video I need to know current music position. How can I determine this?
0
votes
2answers
564 views

Why would SDL_Mixer not play music for certain mp3s?

Why would SDL_Mixer not play music for certain mp3s? I am utilizing SDL_Mixer for music playback in an application I am creating. On certain songs (entire albums actually), the music will simply not ...