testmultiaudio.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*
  2. Copyright (C) 1997-2014 Sam Lantinga <[email protected]>
  3. This software is provided 'as-is', without any express or implied
  4. warranty. In no event will the authors be held liable for any damages
  5. arising from the use of this software.
  6. Permission is granted to anyone to use this software for any purpose,
  7. including commercial applications, and to alter it and redistribute it
  8. freely.
  9. */
  10. #include "SDL.h"
  11. #include <stdio.h> /* for fflush() and stdout */
  12. #ifdef __EMSCRIPTEN__
  13. #include <emscripten/emscripten.h>
  14. #endif
  15. static SDL_AudioSpec spec;
  16. static Uint8 *sound = NULL; /* Pointer to wave data */
  17. static Uint32 soundlen = 0; /* Length of wave data */
  18. typedef struct
  19. {
  20. SDL_AudioDeviceID dev;
  21. int soundpos;
  22. volatile int done;
  23. } callback_data;
  24. callback_data cbd[64];
  25. void SDLCALL
  26. play_through_once(void *arg, Uint8 * stream, int len)
  27. {
  28. callback_data *cbd = (callback_data *) arg;
  29. Uint8 *waveptr = sound + cbd->soundpos;
  30. int waveleft = soundlen - cbd->soundpos;
  31. int cpy = len;
  32. if (cpy > waveleft)
  33. cpy = waveleft;
  34. SDL_memcpy(stream, waveptr, cpy);
  35. len -= cpy;
  36. cbd->soundpos += cpy;
  37. if (len > 0) {
  38. stream += cpy;
  39. SDL_memset(stream, spec.silence, len);
  40. cbd->done++;
  41. }
  42. }
  43. void
  44. loop()
  45. {
  46. if(cbd[0].done) {
  47. emscripten_cancel_main_loop();
  48. SDL_PauseAudioDevice(cbd[0].dev, 1);
  49. SDL_CloseAudioDevice(cbd[0].dev);
  50. SDL_FreeWAV(sound);
  51. SDL_Quit();
  52. }
  53. }
  54. static void
  55. test_multi_audio(int devcount)
  56. {
  57. int keep_going = 1;
  58. int i;
  59. #ifdef __ANDROID__
  60. SDL_Event event;
  61. /* Create a Window to get fully initialized event processing for testing pause on Android. */
  62. SDL_CreateWindow("testmultiaudio", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 320, 240, 0);
  63. #endif
  64. if (devcount > 64) {
  65. SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Too many devices (%d), clamping to 64...\n",
  66. devcount);
  67. devcount = 64;
  68. }
  69. spec.callback = play_through_once;
  70. for (i = 0; i < devcount; i++) {
  71. const char *devname = SDL_GetAudioDeviceName(i, 0);
  72. SDL_Log("playing on device #%d: ('%s')...", i, devname);
  73. fflush(stdout);
  74. SDL_memset(&cbd[0], '\0', sizeof(callback_data));
  75. spec.userdata = &cbd[0];
  76. cbd[0].dev = SDL_OpenAudioDevice(devname, 0, &spec, NULL, 0);
  77. if (cbd[0].dev == 0) {
  78. SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Open device failed: %s\n", SDL_GetError());
  79. } else {
  80. SDL_PauseAudioDevice(cbd[0].dev, 0);
  81. #ifdef __EMSCRIPTEN__
  82. emscripten_set_main_loop(loop, 0, 1);
  83. #else
  84. while (!cbd[0].done)
  85. {
  86. #ifdef __ANDROID__
  87. /* Empty queue, some application events would prevent pause. */
  88. while (SDL_PollEvent(&event)){}
  89. #endif
  90. SDL_Delay(100);
  91. }
  92. SDL_PauseAudioDevice(cbd[0].dev, 1);
  93. #endif
  94. SDL_Log("done.\n");
  95. SDL_CloseAudioDevice(cbd[0].dev);
  96. }
  97. }
  98. SDL_memset(cbd, '\0', sizeof(cbd));
  99. SDL_Log("playing on all devices...\n");
  100. for (i = 0; i < devcount; i++) {
  101. const char *devname = SDL_GetAudioDeviceName(i, 0);
  102. spec.userdata = &cbd[i];
  103. cbd[i].dev = SDL_OpenAudioDevice(devname, 0, &spec, NULL, 0);
  104. if (cbd[i].dev == 0) {
  105. SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Open device %d failed: %s\n", i, SDL_GetError());
  106. }
  107. }
  108. for (i = 0; i < devcount; i++) {
  109. if (cbd[i].dev) {
  110. SDL_PauseAudioDevice(cbd[i].dev, 0);
  111. }
  112. }
  113. while (keep_going) {
  114. keep_going = 0;
  115. for (i = 0; i < devcount; i++) {
  116. if ((cbd[i].dev) && (!cbd[i].done)) {
  117. keep_going = 1;
  118. }
  119. }
  120. #ifdef __ANDROID__
  121. /* Empty queue, some application events would prevent pause. */
  122. while (SDL_PollEvent(&event)){}
  123. #endif
  124. SDL_Delay(100);
  125. }
  126. }
  127. int
  128. main(int argc, char **argv)
  129. {
  130. int devcount = 0;
  131. /* Enable standard application logging */
  132. SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
  133. /* Load the SDL library */
  134. if (SDL_Init(SDL_INIT_AUDIO) < 0) {
  135. SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't initialize SDL: %s\n", SDL_GetError());
  136. return (1);
  137. }
  138. SDL_Log("Using audio driver: %s\n", SDL_GetCurrentAudioDriver());
  139. devcount = SDL_GetNumAudioDevices(0);
  140. if (devcount < 1) {
  141. SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Don't see any specific audio devices!\n");
  142. } else {
  143. if (argv[1] == NULL) {
  144. argv[1] = "sample.wav";
  145. }
  146. /* Load the wave file into memory */
  147. if (SDL_LoadWAV(argv[1], &spec, &sound, &soundlen) == NULL) {
  148. SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't load %s: %s\n", argv[1],
  149. SDL_GetError());
  150. } else {
  151. test_multi_audio(devcount);
  152. SDL_FreeWAV(sound);
  153. }
  154. }
  155. SDL_Quit();
  156. return 0;
  157. }