Skip to content

Commit

Permalink
disk audio: Make default i/o delay match what device is meant to be r…
Browse files Browse the repository at this point in the history
…unning at.
  • Loading branch information
icculus committed Aug 6, 2016
1 parent 978df1a commit 4499e5b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/audio/disk/SDL_diskaudio.c
Expand Up @@ -41,7 +41,6 @@
#define DISKENVR_INFILE "SDL_DISKAUDIOFILEIN"
#define DISKDEFAULT_INFILE "sdlaudio-in.raw"
#define DISKENVR_IODELAY "SDL_DISKAUDIODELAY"
#define DISKDEFAULT_IODELAY 150

/* This function waits until it is possible to write a full sound buffer */
static void
Expand Down Expand Up @@ -140,7 +139,11 @@ DISKAUD_OpenDevice(_THIS, void *handle, const char *devname, int iscapture)
}
SDL_zerop(this->hidden);

this->hidden->io_delay = (envr) ? SDL_atoi(envr) : DISKDEFAULT_IODELAY;
if (envr != NULL) {
this->hidden->io_delay = SDL_atoi(envr);
} else {
this->hidden->io_delay = ((this->spec.samples * 1000) / this->spec.freq);
}

/* Open the audio device */
this->hidden->io = SDL_RWFromFile(fname, iscapture ? "rb" : "wb");
Expand Down

0 comments on commit 4499e5b

Please sign in to comment.