Tagged Questions

8
votes
4answers
4k views

How to statically compile an SDL game on Windows

I have been trying to produce a statically linked "single binary" version of my game for windows. I want to link with sdl, sdl_image and sdl_mixer which in turn pull in a few support libraries. ...
5
votes
2answers
264 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
383 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
123 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
2answers
23 views

What's the difference between Mix_Chunk and Mix_Music?

When should I use Mix_Chunk instead of Mix_Music?
1
vote
1answer
228 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
68 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
49 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
0answers
63 views

I need a cross-platform C audio library, which can handle noncontinuous raw sample data and WAV files

"Noncontinuous raw sample data" in fact refers to the audio part of videos. I can only decode it little by little, but not all data at once. Currently I use SDL's audio callback system to handle ...
0
votes
1answer
89 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
165 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
573 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 ...
-1
votes
0answers
14 views

SDL_mixer MinGW Build Time Libraries

Trying to learn SDL, but I can't find an SDL_mixer Build Time Libraries for MinGW. I'm also having trouble building it from source, there's too many dependencies that have to be compiled... Note: My ...