Home | History | Annotate | Download | only in audio

Lines Matching refs:bootstrap

38 static AudioBootStrap *bootstrap[] = {
319 for ( i=0; bootstrap[i]; ++i ) {
320 if ( SDL_strcasecmp(bootstrap[i]->name, "esd") == 0 ) {
330 if ( bootstrap[i]->available() ) {
331 audio = bootstrap[i]->create(0);
350 for ( i=0; bootstrap[i]; ++i ) {
351 if (SDL_strcasecmp(bootstrap[i]->name, driver_name) == 0) {
352 if ( bootstrap[i]->available() ) {
353 audio=bootstrap[i]->create(idx);
359 for ( i=0; bootstrap[i]; ++i ) {
360 if ( bootstrap[i]->available() ) {
361 audio = bootstrap[i]->create(idx);
379 current_audio->name = bootstrap[i]->name;