/[rdesktop]/jpeg/rdesktop/trunk/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 /jpeg/rdesktop/trunk/rdpsnd_sun.c

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

revision 476 by matthewc, Sat Oct 4 00:03:24 2003 UTC revision 974 by astrand, Thu Aug 4 12:50:15 2005 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
# Line 25  Line 25 
25  #include <fcntl.h>  #include <fcntl.h>
26  #include <errno.h>  #include <errno.h>
27  #include <sys/ioctl.h>  #include <sys/ioctl.h>
28  #include <sys/audio.h>  #include <sys/audioio.h>
29    
30    #if (defined(sun) && (defined(__svr4__) || defined(__SVR4)))
31  #include <stropts.h>  #include <stropts.h>
32    #endif
33    
34  #define MAX_QUEUE       10  #define MAX_QUEUE       10
35    
36  int g_dsp_fd;  int g_dsp_fd;
37  BOOL g_dsp_busy;  BOOL g_dsp_busy = False;
38  static BOOL swapaudio;  static BOOL g_reopened;
39  static short samplewidth;  static BOOL g_swapaudio;
40    static short g_samplewidth;
41    
42  static struct audio_packet {  static struct audio_packet
43    {
44          struct stream s;          struct stream s;
45          uint16 tick;          uint16 tick;
46          uint8 index;          uint8 index;
# Line 45  static unsigned int queue_hi, queue_lo; Line 50  static unsigned int queue_hi, queue_lo;
50  BOOL  BOOL
51  wave_out_open(void)  wave_out_open(void)
52  {  {
53          char *dsp_dev = "/dev/audio";          char *dsp_dev = getenv("AUDIODEV");
54    
55            if (dsp_dev == NULL)
56            {
57                    dsp_dev = xstrdup("/dev/audio");
58            }
59    
60          if ((g_dsp_fd = open(dsp_dev, O_WRONLY|O_NONBLOCK)) == -1)          if ((g_dsp_fd = open(dsp_dev, O_WRONLY | O_NONBLOCK)) == -1)
61          {          {
62                  perror(dsp_dev);                  perror(dsp_dev);
63                  return False;                  return False;
64          }          }
65    
   
66          /* Non-blocking so that user interface is responsive */          /* Non-blocking so that user interface is responsive */
67          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);
68    
69          queue_lo = queue_hi = 0;          queue_lo = queue_hi = 0;
70            g_reopened = True;
71    
72          return True;          return True;
73  }  }
74    
75  void  void
76  wave_out_close(void)  wave_out_close(void)
77  {  {
78          ioctl(g_dsp_fd,I_FLUSH,FLUSHW);          /* Ack all remaining packets */
79            while (queue_lo != queue_hi)
80            {
81                    rdpsnd_send_completion(packet_queue[queue_lo].tick, packet_queue[queue_lo].index);
82                    free(packet_queue[queue_lo].s.data);
83                    queue_lo = (queue_lo + 1) % MAX_QUEUE;
84            }
85    
86    #if defined I_FLUSH && defined FLUSHW
87            /* Flush the audiobuffer */
88            ioctl(g_dsp_fd, I_FLUSH, FLUSHW);
89    #endif
90    #if defined AUDIO_FLUSH
91            ioctl(g_dsp_fd, AUDIO_FLUSH, NULL);
92    #endif
93          close(g_dsp_fd);          close(g_dsp_fd);
94  }  }
95    
96  BOOL  BOOL
97  wave_out_format_supported(WAVEFORMATEX *pwfx)  wave_out_format_supported(WAVEFORMATEX * pwfx)
98  {  {
99          if (pwfx->wFormatTag != WAVE_FORMAT_PCM)          if (pwfx->wFormatTag != WAVE_FORMAT_PCM)
100                  return False;                  return False;
# Line 81  wave_out_format_supported(WAVEFORMATEX * Line 107  wave_out_format_supported(WAVEFORMATEX *
107  }  }
108    
109  BOOL  BOOL
110  wave_out_set_format(WAVEFORMATEX *pwfx)  wave_out_set_format(WAVEFORMATEX * pwfx)
111  {  {
112          audio_info_t info;          audio_info_t info;
         int test = 1;  
113    
114          ioctl(g_dsp_fd, AUDIO_DRAIN, 0);          ioctl(g_dsp_fd, AUDIO_DRAIN, 0);
115          swapaudio = False;          g_swapaudio = False;
116          AUDIO_INITINFO(&info);          AUDIO_INITINFO(&info);
117    
118    
119          if (pwfx->wBitsPerSample == 8)          if (pwfx->wBitsPerSample == 8)
120          {          {
121                  info.play.encoding = AUDIO_ENCODING_LINEAR8;                  info.play.encoding = AUDIO_ENCODING_LINEAR8;
                 samplewidth=1;  
122          }          }
123          else if (pwfx->wBitsPerSample == 16)          else if (pwfx->wBitsPerSample == 16)
124          {          {
125                  info.play.encoding = AUDIO_ENCODING_LINEAR;                  info.play.encoding = AUDIO_ENCODING_LINEAR;
126                  swapaudio = !(*(uint8 *) (&test));                  /* Do we need to swap the 16bit values? (Are we BigEndian) */
127                  samplewidth=2;  #ifdef B_ENDIAN
128                    g_swapaudio = 1;
129    #else
130                    g_swapaudio = 0;
131    #endif
132          }          }
133    
134          if (pwfx->nChannels == 1 )          g_samplewidth = pwfx->wBitsPerSample / 8;
135          {        
136                  info.play.channels = AUDIO_CHANNELS_MONO;          if (pwfx->nChannels == 1)
137            {
138                    info.play.channels = 1;
139          }          }
140          else if (pwfx->nChannels == 2 )          else if (pwfx->nChannels == 2)
141          {          {
142                  info.play.channels = AUDIO_CHANNELS_STEREO;                  info.play.channels = 2;
143                  samplewidth*=2;                  g_samplewidth *= 2;
144          }          }
145    
146          info.play.sample_rate = pwfx->nSamplesPerSec;          info.play.sample_rate = pwfx->nSamplesPerSec;
# Line 118  wave_out_set_format(WAVEFORMATEX *pwfx) Line 148  wave_out_set_format(WAVEFORMATEX *pwfx)
148          info.play.samples = 0;          info.play.samples = 0;
149          info.play.eof = 0;          info.play.eof = 0;
150          info.play.error = 0;          info.play.error = 0;
151            g_reopened = True;
152    
153          if (ioctl(g_dsp_fd, AUDIO_SETINFO, &info) == -1)          if (ioctl(g_dsp_fd, AUDIO_SETINFO, &info) == -1)
154          {          {
# Line 130  wave_out_set_format(WAVEFORMATEX *pwfx) Line 161  wave_out_set_format(WAVEFORMATEX *pwfx)
161  }  }
162    
163  void  void
164    wave_out_volume(uint16 left, uint16 right)
165    {
166            audio_info_t info;
167            uint balance;
168            uint volume;
169    
170            AUDIO_INITINFO(&info);
171    
172            volume = (left > right) ? left : right;
173    
174            if (volume / AUDIO_MID_BALANCE != 0)
175            {
176                    balance =
177                            AUDIO_MID_BALANCE - (left / (volume / AUDIO_MID_BALANCE)) +
178                            (right / (volume / AUDIO_MID_BALANCE));
179            }
180            else
181            {
182                    balance = AUDIO_MID_BALANCE;
183            }
184    
185            info.play.gain = volume / (65536 / AUDIO_MAX_GAIN);
186            info.play.balance = balance;
187    
188            if (ioctl(g_dsp_fd, AUDIO_SETINFO, &info) == -1)
189            {
190                    perror("AUDIO_SETINFO");
191                    return;
192            }
193    }
194    
195    void
196  wave_out_write(STREAM s, uint16 tick, uint8 index)  wave_out_write(STREAM s, uint16 tick, uint8 index)
197  {  {
198          struct audio_packet *packet = &packet_queue[queue_hi];          struct audio_packet *packet = &packet_queue[queue_hi];
# Line 140  wave_out_write(STREAM s, uint16 tick, ui Line 203  wave_out_write(STREAM s, uint16 tick, ui
203                  error("No space to queue audio packet\n");                  error("No space to queue audio packet\n");
204                  return;                  return;
205          }          }
206            
207          queue_hi = next_hi;          queue_hi = next_hi;
208    
209          packet->s = *s;          packet->s = *s;
210          packet->tick = tick;          packet->tick = tick;
211          packet->index = index;          packet->index = index;
212            packet->s.p += 4;
213    
214          /* we steal the data buffer from s, give it a new one */          /* we steal the data buffer from s, give it a new one */
215          s->data = malloc(s->size);          s->data = malloc(s->size);
# Line 165  wave_out_play(void) Line 229  wave_out_play(void)
229          STREAM out;          STREAM out;
230          static BOOL swapped = False;          static BOOL swapped = False;
231          static BOOL sentcompletion = True;          static BOOL sentcompletion = True;
232          static int samplecnt;          static uint32 samplecnt = 0;
233          static int numsamples;          static uint32 numsamples;
234    
235          while (1)          while (1)
236          {          {
237                    if (g_reopened)
238                    {
239                            /* Device was just (re)openend */
240                            samplecnt = 0;
241                            swapped = False;
242                            sentcompletion = True;
243                            g_reopened = False;
244                    }
245    
246                  if (queue_lo == queue_hi)                  if (queue_lo == queue_hi)
247                  {                  {
248                          g_dsp_busy = 0;                          g_dsp_busy = 0;
# Line 179  wave_out_play(void) Line 252  wave_out_play(void)
252                  packet = &packet_queue[queue_lo];                  packet = &packet_queue[queue_lo];
253                  out = &packet->s;                  out = &packet->s;
254    
255                  if ( swapaudio && ! swapped )                  /* Swap the current packet, but only once */
256                    if (g_swapaudio && !swapped)
257                  {                  {
258                          for ( i = 0; i < out->end - out->p; i+=2 )                          for (i = 0; i < out->end - out->p; i += 2)
259                          {                          {
260                                  swap = *(out->p + i);                                  swap = *(out->p + i);
261                                  *(out->p + i ) = *(out->p + i + 1);                                  *(out->p + i) = *(out->p + i + 1);
262                                  *(out->p + i + 1) = swap;                                  *(out->p + i + 1) = swap;
                                 swapped = True;  
263                          }                          }
264                            swapped = True;
265                  }                  }
266    
267                  if ( sentcompletion )                  if (sentcompletion)
268                  {                  {
                         if (ioctl(g_dsp_fd, AUDIO_GETINFO, &info) == -1)  
                         {  
                                 perror("AUDIO_GETINFO");  
                                 return;  
                         }  
                         samplecnt=info.play.samples;  
269                          sentcompletion = False;                          sentcompletion = False;
270                          numsamples = (out->end-out->p)/samplewidth;                          numsamples = (out->end - out->p) / g_samplewidth;
271                  }                  }
272    
273                  len=0;                  len = 0;
274    
275                  if ( out->end - out->p != 0 )                  if (out->end != out->p)
276                  {                  {
277                          len = write(g_dsp_fd, out->p, out->end - out->p);                          len = write(g_dsp_fd, out->p, out->end - out->p);
278                          if (len == -1)                          if (len == -1)
# Line 224  wave_out_play(void) Line 292  wave_out_play(void)
292                                  perror("AUDIO_GETINFO");                                  perror("AUDIO_GETINFO");
293                                  return;                                  return;
294                          }                          }
295                          if ( info.play.samples >= samplecnt+(numsamples)*0.9 )  
296                            /* Ack the packet, if we have played at least 70% */
297                            if (info.play.samples >= samplecnt + ((numsamples * 7) / 10))
298                          {                          {
299                                    samplecnt += numsamples;
300                                  rdpsnd_send_completion(packet->tick, packet->index);                                  rdpsnd_send_completion(packet->tick, packet->index);
301                                  free(out->data);                                  free(out->data);
302                                  queue_lo = (queue_lo + 1) % MAX_QUEUE;                                  queue_lo = (queue_lo + 1) % MAX_QUEUE;

Legend:
Removed from v.476  
changed lines
  Added in v.974

  ViewVC Help
Powered by ViewVC 1.1.26