SDL_audiodev.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. #ifdef SAVE_RCSID
  19. static char rcsid =
  20.  "@(#) $Id: SDL_audiodev.c,v 1.4 2002/04/22 21:38:01 wmay Exp $";
  21. #endif
  22. /* Get the name of the audio device we use for output */
  23. #if defined(unix) || defined(__unix__)
  24. #include <stdlib.h>
  25. #include <stdio.h>
  26. #include <fcntl.h>
  27. #include <sys/types.h>
  28. #include <sys/stat.h>
  29. #include <string.h>
  30. #include "SDL_audiodev_c.h"
  31. #ifndef _PATH_DEV_DSP
  32. #ifdef __OpenBSD__
  33. #define _PATH_DEV_DSP  "/dev/audio"
  34. #else
  35. #define _PATH_DEV_DSP  "/dev/dsp"
  36. #endif
  37. #endif
  38. #ifndef _PATH_DEV_DSP24
  39. #define _PATH_DEV_DSP24 "/dev/sound/dsp"
  40. #endif
  41. #ifndef _PATH_DEV_AUDIO
  42. #define _PATH_DEV_AUDIO "/dev/audio"
  43. #endif
  44. int SDL_OpenAudioPath(char *path, int maxlen, int flags, int classic)
  45. {
  46. const char *audiodev;
  47. int audio_fd;
  48. char audiopath[1024];
  49. /* Figure out what our audio device is */
  50. if ( ((audiodev=getenv("SDL_PATH_DSP")) == NULL) &&
  51.      ((audiodev=getenv("AUDIODEV")) == NULL) ) {
  52. if ( classic ) {
  53. audiodev = _PATH_DEV_AUDIO;
  54. } else {
  55. struct stat sb;
  56. /* Added support for /dev/sound/* in Linux 2.4 */
  57. if ( (stat("/dev/sound", &sb) == 0) &&
  58.      S_ISDIR(sb.st_mode) ) {
  59. audiodev = _PATH_DEV_DSP24;
  60. } else {
  61. audiodev = _PATH_DEV_DSP;
  62. }
  63. }
  64. }
  65. audio_fd = open(audiodev, flags, 0);
  66. /* If the first open fails, look for other devices */
  67. if ( (audio_fd < 0) && (strlen(audiodev) < (sizeof(audiopath)-3)) ) {
  68. int exists, instance;
  69. struct stat sb;
  70. instance = 1;
  71. do { /* Don't use errno ENOENT - it may not be thread-safe */
  72. sprintf(audiopath, "%s%d", audiodev, instance++);
  73. exists = 0;
  74. if ( stat(audiopath, &sb) == 0 ) {
  75. exists = 1;
  76. audio_fd = open(audiopath, flags, 0); 
  77. }
  78. } while ( exists && (audio_fd < 0) );
  79. audiodev = audiopath;
  80. }
  81. if ( path != NULL ) {
  82. strncpy(path, audiodev, maxlen);
  83. path[maxlen-1] = '';
  84. }
  85. return(audio_fd);
  86. }
  87. #elif defined(_AIX)
  88. /* Get the name of the audio device we use for output */
  89. #include <stdlib.h>
  90. #include <sys/types.h>
  91. #include <sys/stat.h>
  92. #include <string.h>
  93. #include "SDL_audiodev_c.h"
  94. #ifndef _PATH_DEV_DSP
  95. #define _PATH_DEV_DSP "/dev/%caud%c/%c"
  96. #endif
  97. char devsettings[][3] =
  98. {
  99.     { 'p', '0', '1' }, { 'p', '0', '2' }, { 'p', '0', '3' }, { 'p', '0', '4' },
  100.     { 'p', '1', '1' }, { 'p', '1', '2' }, { 'p', '1', '3' }, { 'p', '1', '4' },
  101.     { 'p', '2', '1' }, { 'p', '2', '2' }, { 'p', '2', '3' }, { 'p', '2', '4' },
  102.     { 'p', '3', '1' }, { 'p', '3', '2' }, { 'p', '3', '3' }, { 'p', '3', '4' },
  103.     { 'b', '0', '1' }, { 'b', '0', '2' }, { 'b', '0', '3' }, { 'b', '0', '4' },
  104.     { 'b', '1', '1' }, { 'b', '1', '2' }, { 'b', '1', '3' }, { 'b', '1', '4' },
  105.     { 'b', '2', '1' }, { 'b', '2', '2' }, { 'b', '2', '3' }, { 'b', '2', '4' },
  106.     { 'b', '3', '1' }, { 'b', '3', '2' }, { 'b', '3', '3' }, { 'b', '3', '4' },
  107.     { '', '', '' }
  108. };
  109. static int OpenUserDefinedDevice(char *path, int maxlen, int flags)
  110. {
  111. const char *audiodev;
  112. int  audio_fd;
  113. /* Figure out what our audio device is */
  114. if ((audiodev=getenv("SDL_PATH_DSP")) == NULL) {
  115.     audiodev=getenv("AUDIODEV");
  116. }
  117. if ( audiodev == NULL ) {
  118.     return -1;
  119. }
  120. audio_fd = open(audiodev, flags, 0);
  121. if ( path != NULL ) {
  122. strncpy(path, audiodev, maxlen);
  123. path[maxlen-1] = '';
  124. }
  125. return audio_fd;
  126. }
  127. int SDL_OpenAudioPath(char *path, int maxlen, int flags, int classic)
  128. {
  129.     struct stat sb;
  130.     int         audio_fd;
  131.     char        audiopath[1024];
  132.     int         cycle;
  133.     audio_fd = OpenUserDefinedDevice(path,maxlen,flags);
  134.     if ( audio_fd != -1 ) {
  135.         return audio_fd;
  136.     }
  137.     cycle    = 0;
  138.     while( devsettings[cycle][0] != '' ) {
  139.         sprintf( audiopath,
  140.                  _PATH_DEV_DSP,
  141.                  devsettings[cycle][0],
  142.                  devsettings[cycle][1],
  143.                  devsettings[cycle][2]);
  144. if ( stat(audiopath, &sb) == 0 ) {
  145.     audio_fd = open(audiopath, flags, 0);
  146.     if ( audio_fd > 0 ) {
  147. if ( path != NULL ) {
  148.     strncpy( path, audiopath, maxlen );
  149.     path[maxlen-1] = '';
  150. }
  151.         return audio_fd;
  152.     }
  153. }
  154.     }
  155.     return -1;
  156. }
  157. #endif /* UNIX system */