/[rdesktop]/sourceforge.net/trunk/rdesktop/rdpsnd_sun.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/rdesktop/rdpsnd_sun.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 510 by stargo, Thu Oct 23 11:11:31 2003 UTC revision 1345 by ossman_, Thu Dec 7 11:54:29 2006 UTC
# Line 1  Line 1 
1  /*  /* -*- c-basic-offset: 8 -*-
2     rdesktop: A Remote Desktop Protocol client.     rdesktop: A Remote Desktop Protocol client.
3     Sound Channel Process Functions - Sun     Sound Channel Process Functions - Sun
4     Copyright (C) Matthew Chapman 2003     Copyright (C) Matthew Chapman 2003
5     Copyright (C) GuoJunBo guojunbo@ict.ac.cn 2003     Copyright (C) GuoJunBo guojunbo@ict.ac.cn 2003
6     Copyright (C) Michael Gernoth mike@zerfleddert.de 2003     Copyright (C) Michael Gernoth mike@zerfleddert.de 2003-2006
7    
8     This program is free software; you can redistribute it and/or modify     This program is free software; you can redistribute it and/or modify
9     it under the terms of the GNU General Public License as published by     it under the terms of the GNU General Public License as published by
# Line 21  Line 21 
21  */  */
22    
23  #include "rdesktop.h"  #include "rdesktop.h"
24    #include "rdpsnd.h"
25  #include <unistd.h>  #include <unistd.h>
26  #include <fcntl.h>  #include <fcntl.h>
27  #include <errno.h>  #include <errno.h>
28  #include <sys/ioctl.h>  #include <sys/ioctl.h>
29  #include <sys/audioio.h>  #include <sys/audioio.h>
30    
31    #if (defined(sun) && (defined(__svr4__) || defined(__SVR4)))
32  #include <stropts.h>  #include <stropts.h>
33    #endif
34    
35  #define MAX_QUEUE       10  #define DEFAULTDEVICE   "/dev/audio"
36    
 int g_dsp_fd;  
 BOOL g_dsp_busy = False;  
37  static BOOL g_reopened;  static BOOL g_reopened;
 static BOOL g_swapaudio;  
38  static short g_samplewidth;  static short g_samplewidth;
39    static char *dsp_dev;
 static struct audio_packet  
 {  
         struct stream s;  
         uint16 tick;  
         uint8 index;  
 } packet_queue[MAX_QUEUE];  
 static unsigned int queue_hi, queue_lo;  
40    
41  BOOL  BOOL
42  wave_out_open(void)  sun_open(void)
43  {  {
         char *dsp_dev = getenv("AUDIODEV");  
   
         if (dsp_dev == NULL)  
         {  
                 dsp_dev = "/dev/audio";  
         }  
   
44          if ((g_dsp_fd = open(dsp_dev, O_WRONLY | O_NONBLOCK)) == -1)          if ((g_dsp_fd = open(dsp_dev, O_WRONLY | O_NONBLOCK)) == -1)
45          {          {
46                  perror(dsp_dev);                  perror(dsp_dev);
# Line 63  wave_out_open(void) Line 50  wave_out_open(void)
50          /* Non-blocking so that user interface is responsive */          /* Non-blocking so that user interface is responsive */
51          fcntl(g_dsp_fd, F_SETFL, fcntl(g_dsp_fd, F_GETFL) | O_NONBLOCK);          fcntl(g_dsp_fd, F_SETFL, fcntl(g_dsp_fd, F_GETFL) | O_NONBLOCK);
52    
         queue_lo = queue_hi = 0;  
53          g_reopened = True;          g_reopened = True;
54    
55          return True;          return True;
56  }  }
57    
58  void  void
59  wave_out_close(void)  sun_close(void)
60  {  {
61          /* Ack all remaining packets */          /* Ack all remaining packets */
62          while (queue_lo != queue_hi)          while (!rdpsnd_queue_empty())
63          {                  rdpsnd_queue_next(0);
                 rdpsnd_send_completion(packet_queue[queue_lo].tick, packet_queue[queue_lo].index);  
                 free(packet_queue[queue_lo].s.data);  
                 queue_lo = (queue_lo + 1) % MAX_QUEUE;  
         }  
64    
65    #if defined I_FLUSH && defined FLUSHW
66          /* Flush the audiobuffer */          /* Flush the audiobuffer */
67          ioctl(g_dsp_fd, I_FLUSH, FLUSHW);          ioctl(g_dsp_fd, I_FLUSH, FLUSHW);
68    #endif
69    #if defined AUDIO_FLUSH
70            ioctl(g_dsp_fd, AUDIO_FLUSH, NULL);
71    #endif
72          close(g_dsp_fd);          close(g_dsp_fd);
73  }  }
74    
75  BOOL  BOOL
76  wave_out_format_supported(WAVEFORMATEX * pwfx)  sun_format_supported(WAVEFORMATEX * pwfx)
77  {  {
78          if (pwfx->wFormatTag != WAVE_FORMAT_PCM)          if (pwfx->wFormatTag != WAVE_FORMAT_PCM)
79                  return False;                  return False;
# Line 99  wave_out_format_supported(WAVEFORMATEX * Line 86  wave_out_format_supported(WAVEFORMATEX *
86  }  }
87    
88  BOOL  BOOL
89  wave_out_set_format(WAVEFORMATEX * pwfx)  sun_set_format(WAVEFORMATEX * pwfx)
90  {  {
91          audio_info_t info;          audio_info_t info;
         int test = 1;  
92    
93          ioctl(g_dsp_fd, AUDIO_DRAIN, 0);          ioctl(g_dsp_fd, AUDIO_DRAIN, 0);
         g_swapaudio = False;  
94          AUDIO_INITINFO(&info);          AUDIO_INITINFO(&info);
95    
96    
# Line 116  wave_out_set_format(WAVEFORMATEX * pwfx) Line 101  wave_out_set_format(WAVEFORMATEX * pwfx)
101          else if (pwfx->wBitsPerSample == 16)          else if (pwfx->wBitsPerSample == 16)
102          {          {
103                  info.play.encoding = AUDIO_ENCODING_LINEAR;                  info.play.encoding = AUDIO_ENCODING_LINEAR;
                 /* Do we need to swap the 16bit values? (Are we BigEndian) */  
                 g_swapaudio = !(*(uint8 *) (&test));  
104          }          }
105    
106          g_samplewidth = pwfx->wBitsPerSample / 8;          g_samplewidth = pwfx->wBitsPerSample / 8;
107    
108          if (pwfx->nChannels == 1)          if (pwfx->nChannels == 1)
109          {          {
110                  info.play.channels = AUDIO_CHANNELS_MONO;                  info.play.channels = 1;
111          }          }
112          else if (pwfx->nChannels == 2)          else if (pwfx->nChannels == 2)
113          {          {
114                  info.play.channels = AUDIO_CHANNELS_STEREO;                  info.play.channels = 2;
115                  g_samplewidth *= 2;                  g_samplewidth *= 2;
116          }          }
117    
# Line 150  wave_out_set_format(WAVEFORMATEX * pwfx) Line 133  wave_out_set_format(WAVEFORMATEX * pwfx)
133  }  }
134    
135  void  void
136  wave_out_volume(uint16 left, uint16 right)  sun_volume(uint16 left, uint16 right)
137  {  {
138          audio_info_t info;          audio_info_t info;
139          uint balance;          uint balance;
140          uint volume;          uint volume;
141    
142          if (ioctl(g_dsp_fd, AUDIO_GETINFO, &info) == -1)          AUDIO_INITINFO(&info);
         {  
                 perror("AUDIO_GETINFO");  
                 return;  
         }  
143    
144          volume = (left > right) ? left : right;          volume = (left > right) ? left : right;
145    
# Line 186  wave_out_volume(uint16 left, uint16 righ Line 165  wave_out_volume(uint16 left, uint16 righ
165  }  }
166    
167  void  void
168  wave_out_write(STREAM s, uint16 tick, uint8 index)  sun_play(void)
 {  
         struct audio_packet *packet = &packet_queue[queue_hi];  
         unsigned int next_hi = (queue_hi + 1) % MAX_QUEUE;  
   
         if (next_hi == queue_lo)  
         {  
                 error("No space to queue audio packet\n");  
                 return;  
         }  
   
         queue_hi = next_hi;  
   
         packet->s = *s;  
         packet->tick = tick;  
         packet->index = index;  
         packet->s.p += 4;  
   
         /* we steal the data buffer from s, give it a new one */  
         s->data = malloc(s->size);  
   
         if (!g_dsp_busy)  
                 wave_out_play();  
 }  
   
 void  
 wave_out_play(void)  
169  {  {
170          struct audio_packet *packet;          struct audio_packet *packet;
171          audio_info_t info;          audio_info_t info;
172          ssize_t len;          ssize_t len;
173          unsigned int i;          unsigned int i;
         uint8 swap;  
174          STREAM out;          STREAM out;
         static BOOL swapped = False;  
175          static BOOL sentcompletion = True;          static BOOL sentcompletion = True;
176          static uint32 samplecnt = 0;          static uint32 samplecnt = 0;
177          static uint32 numsamples;          static uint32 numsamples;
# Line 231  wave_out_play(void) Line 182  wave_out_play(void)
182                  {                  {
183                          /* Device was just (re)openend */                          /* Device was just (re)openend */
184                          samplecnt = 0;                          samplecnt = 0;
                         swapped = False;  
185                          sentcompletion = True;                          sentcompletion = True;
186                          g_reopened = False;                          g_reopened = False;
187                  }                  }
188    
189                  if (queue_lo == queue_hi)                  if (rdpsnd_queue_empty())
190                  {                  {
191                          g_dsp_busy = 0;                          g_dsp_busy = 0;
192                          return;                          return;
193                  }                  }
194    
195                  packet = &packet_queue[queue_lo];                  packet = rdpsnd_queue_current_packet();
196                  out = &packet->s;                  out = &packet->s;
197    
                 /* Swap the current packet, but only once */  
                 if (g_swapaudio && !swapped)  
                 {  
                         for (i = 0; i < out->end - out->p; i += 2)  
                         {  
                                 swap = *(out->p + i);  
                                 *(out->p + i) = *(out->p + i + 1);  
                                 *(out->p + i + 1) = swap;  
                         }  
                         swapped = True;  
                 }  
   
198                  if (sentcompletion)                  if (sentcompletion)
199                  {                  {
200                          sentcompletion = False;                          sentcompletion = False;
# Line 290  wave_out_play(void) Line 228  wave_out_play(void)
228                          if (info.play.samples >= samplecnt + ((numsamples * 7) / 10))                          if (info.play.samples >= samplecnt + ((numsamples * 7) / 10))
229                          {                          {
230                                  samplecnt += numsamples;                                  samplecnt += numsamples;
231                                  rdpsnd_send_completion(packet->tick, packet->index);                                  /* We need to add 50 to tell windows that time has passed while
232                                  free(out->data);                                   * playing this packet */
233                                  queue_lo = (queue_lo + 1) % MAX_QUEUE;                                  rdpsnd_queue_next(50);
                                 swapped = False;  
234                                  sentcompletion = True;                                  sentcompletion = True;
235                          }                          }
236                          else                          else
# Line 304  wave_out_play(void) Line 241  wave_out_play(void)
241                  }                  }
242          }          }
243  }  }
244    
245    static struct audio_driver sun_driver = {
246            .name = "sun",
247            .description = "SUN/BSD output driver, default device: " DEFAULTDEVICE " or $AUDIODEV",
248    
249            .wave_out_open = sun_open,
250            .wave_out_close = sun_close,
251            .wave_out_format_supported = sun_format_supported,
252            .wave_out_set_format = sun_set_format,
253            .wave_out_volume = sun_volume,
254            .wave_out_play = sun_play,
255    
256            .need_byteswap_on_be = 1,
257            .need_resampling = 0,
258    };
259    
260    struct audio_driver *
261    sun_register(char *options)
262    {
263            if (options)
264            {
265                    dsp_dev = xstrdup(options);
266            }
267            else
268            {
269                    dsp_dev = getenv("AUDIODEV");
270    
271                    if (dsp_dev == NULL)
272                    {
273                            dsp_dev = xstrdup(DEFAULTDEVICE);
274                    }
275            }
276    
277            return &sun_driver;
278    }

Legend:
Removed from v.510  
changed lines
  Added in v.1345

  ViewVC Help
Powered by ViewVC 1.1.26