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

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

revision 963 by astrand, Wed Aug 3 10:56:16 2005 UTC revision 1302 by ossman_, Thu Oct 26 09:47:17 2006 UTC
# Line 19  Line 19 
19     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */  */
21    
22    #include <assert.h>
23    
24  #include "rdesktop.h"  #include "rdesktop.h"
25    #include "rdpsnd.h"
26    #include "rdpsnd_dsp.h"
27    
28  #define RDPSND_CLOSE            1  #define RDPSND_CLOSE            1
29  #define RDPSND_WRITE            2  #define RDPSND_WRITE            2
30  #define RDPSND_SET_VOLUME       3  #define RDPSND_SET_VOLUME       3
31  #define RDPSND_UNKNOWN4         4  #define RDPSND_UNKNOWN4         4
32  #define RDPSND_COMPLETION       5  #define RDPSND_COMPLETION       5
33  #define RDPSND_UNKNOWN6         6  #define RDPSND_SERVERTICK       6
34  #define RDPSND_NEGOTIATE        7  #define RDPSND_NEGOTIATE        7
35    
36  #define MAX_FORMATS             10  #define MAX_FORMATS             10
37    #define MAX_QUEUE               10
38    
39    BOOL g_dsp_busy = False;
40    int g_dsp_fd;
41    
42  static VCHANNEL *rdpsnd_channel;  static VCHANNEL *rdpsnd_channel;
43    static struct audio_driver *drivers = NULL;
44    struct audio_driver *current_driver = NULL;
45    
46  static BOOL device_open;  static BOOL device_open;
47  static WAVEFORMATEX formats[MAX_FORMATS];  static WAVEFORMATEX formats[MAX_FORMATS];
48  static unsigned int format_count;  static unsigned int format_count;
49  static unsigned int current_format;  static unsigned int current_format;
50    unsigned int queue_hi, queue_lo, queue_pending;
51    struct audio_packet packet_queue[MAX_QUEUE];
52    
53    void (*wave_out_play) (void);
54    
55    static void rdpsnd_queue_write(STREAM s, uint16 tick, uint8 index);
56    static void rdpsnd_queue_init(void);
57    static void rdpsnd_queue_complete_pending(void);
58    static long rdpsnd_queue_next_completion(void);
59    
60  static STREAM  static STREAM
61  rdpsnd_init_packet(uint16 type, uint16 size)  rdpsnd_init_packet(uint16 type, uint16 size)
# Line 60  rdpsnd_send(STREAM s) Line 79  rdpsnd_send(STREAM s)
79          channel_send(s, rdpsnd_channel);          channel_send(s, rdpsnd_channel);
80  }  }
81    
82  void  static void
83  rdpsnd_send_completion(uint16 tick, uint8 packet_index)  rdpsnd_send_completion(uint16 tick, uint8 packet_index)
84  {  {
85          STREAM s;          STREAM s;
86    
87          s = rdpsnd_init_packet(RDPSND_COMPLETION, 4);          s = rdpsnd_init_packet(RDPSND_COMPLETION, 4);
88          out_uint16_le(s, tick + 50);          out_uint16_le(s, tick);
89          out_uint8(s, packet_index);          out_uint8(s, packet_index);
90          out_uint8(s, 0);          out_uint8(s, 0);
91          s_mark_end(s);          s_mark_end(s);
# Line 87  rdpsnd_process_negotiate(STREAM in) Line 106  rdpsnd_process_negotiate(STREAM in)
106          in_uint16_le(in, in_format_count);          in_uint16_le(in, in_format_count);
107          in_uint8s(in, 4);       /* pad, status, pad */          in_uint8s(in, 4);       /* pad, status, pad */
108    
109          if (wave_out_open())          if (current_driver->wave_out_open())
110          {          {
111                  wave_out_close();                  current_driver->wave_out_close();
112                  device_available = True;                  device_available = True;
113          }          }
114    
# Line 120  rdpsnd_process_negotiate(STREAM in) Line 139  rdpsnd_process_negotiate(STREAM in)
139                          in_uint8a(in, format->cb, readcnt);                          in_uint8a(in, format->cb, readcnt);
140                          in_uint8s(in, discardcnt);                          in_uint8s(in, discardcnt);
141    
142                          if (device_available && wave_out_format_supported(format))                          if (device_available && current_driver->wave_out_format_supported(format))
143                          {                          {
144                                  format_count++;                                  format_count++;
145                                  if (format_count == MAX_FORMATS)                                  if (format_count == MAX_FORMATS)
# Line 157  rdpsnd_process_negotiate(STREAM in) Line 176  rdpsnd_process_negotiate(STREAM in)
176  }  }
177    
178  static void  static void
179  rdpsnd_process_unknown6(STREAM in)  rdpsnd_process_servertick(STREAM in)
180  {  {
181          uint16 unknown1, unknown2;          uint16 tick1, tick2;
182          STREAM out;          STREAM out;
183    
184          /* in_uint8s(in, 4); unknown */          /* in_uint8s(in, 4); unknown */
185          in_uint16_le(in, unknown1);          in_uint16_le(in, tick1);
186          in_uint16_le(in, unknown2);          in_uint16_le(in, tick2);
187    
188          out = rdpsnd_init_packet(RDPSND_UNKNOWN6 | 0x2300, 4);          out = rdpsnd_init_packet(RDPSND_SERVERTICK | 0x2300, 4);
189          out_uint16_le(out, unknown1);          out_uint16_le(out, tick1);
190          out_uint16_le(out, unknown2);          out_uint16_le(out, tick2);
191          s_mark_end(out);          s_mark_end(out);
192          rdpsnd_send(out);          rdpsnd_send(out);
193  }  }
# Line 182  rdpsnd_process(STREAM s) Line 201  rdpsnd_process(STREAM s)
201          static uint16 tick, format;          static uint16 tick, format;
202          static uint8 packet_index;          static uint8 packet_index;
203          static BOOL awaiting_data_packet;          static BOOL awaiting_data_packet;
204            static unsigned char missing_bytes[4] = { 0, 0, 0, 0 };
205    
206  #ifdef RDPSND_DEBUG  #ifdef RDPSND_DEBUG
207          printf("RDPSND recv:\n");          printf("RDPSND recv:\n");
# Line 198  rdpsnd_process(STREAM s) Line 218  rdpsnd_process(STREAM s)
218    
219                  if (!device_open || (format != current_format))                  if (!device_open || (format != current_format))
220                  {                  {
221                          if (!device_open && !wave_out_open())                          if (!device_open && !current_driver->wave_out_open())
222                          {                          {
223                                  rdpsnd_send_completion(tick, packet_index);                                  rdpsnd_send_completion(tick, packet_index);
224                                  return;                                  return;
225                          }                          }
226                          if (!wave_out_set_format(&formats[format]))                          if (!current_driver->wave_out_set_format(&formats[format]))
227                          {                          {
228                                  rdpsnd_send_completion(tick, packet_index);                                  rdpsnd_send_completion(tick, packet_index);
229                                  wave_out_close();                                  current_driver->wave_out_close();
230                                  device_open = False;                                  device_open = False;
231                                  return;                                  return;
232                          }                          }
# Line 214  rdpsnd_process(STREAM s) Line 234  rdpsnd_process(STREAM s)
234                          current_format = format;                          current_format = format;
235                  }                  }
236    
237                  wave_out_write(s, tick, packet_index);                  /* Insert the 4 missing bytes retrieved from last RDPSND_WRITE */
238                    memcpy(s->data, missing_bytes, 4);
239    
240                    rdpsnd_queue_write(rdpsnd_dsp_process
241                                       (s, current_driver, &formats[current_format]), tick,
242                                       packet_index);
243                  awaiting_data_packet = False;                  awaiting_data_packet = False;
244                  return;                  return;
245          }          }
# Line 229  rdpsnd_process(STREAM s) Line 254  rdpsnd_process(STREAM s)
254                          in_uint16_le(s, tick);                          in_uint16_le(s, tick);
255                          in_uint16_le(s, format);                          in_uint16_le(s, format);
256                          in_uint8(s, packet_index);                          in_uint8(s, packet_index);
257                            /* Here are our lost bytes, but why? */
258                            memcpy(missing_bytes, s->end - 4, 4);
259                          awaiting_data_packet = True;                          awaiting_data_packet = True;
260                          break;                          break;
261                  case RDPSND_CLOSE:                  case RDPSND_CLOSE:
262                          wave_out_close();                          current_driver->wave_out_close();
263                          device_open = False;                          device_open = False;
264                          break;                          break;
265                  case RDPSND_NEGOTIATE:                  case RDPSND_NEGOTIATE:
266                          rdpsnd_process_negotiate(s);                          rdpsnd_process_negotiate(s);
267                          break;                          break;
268                  case RDPSND_UNKNOWN6:                  case RDPSND_SERVERTICK:
269                          rdpsnd_process_unknown6(s);                          rdpsnd_process_servertick(s);
270                          break;                          break;
271                  case RDPSND_SET_VOLUME:                  case RDPSND_SET_VOLUME:
272                          in_uint32(s, volume);                          in_uint32(s, volume);
273                          if (device_open)                          if (device_open)
274                          {                          {
275                                  wave_out_volume((volume & 0xffff), (volume & 0xffff0000) >> 16);                                  current_driver->wave_out_volume((volume & 0xffff),
276                                                                    (volume & 0xffff0000) >> 16);
277                          }                          }
278                          break;                          break;
279                  default:                  default:
# Line 254  rdpsnd_process(STREAM s) Line 282  rdpsnd_process(STREAM s)
282          }          }
283  }  }
284    
285    static BOOL
286    rdpsnd_auto_open(void)
287    {
288            static BOOL failed = False;
289    
290            if (!failed)
291            {
292                    struct audio_driver *auto_driver = current_driver;
293    
294                    current_driver = drivers;
295                    while (current_driver != NULL)
296                    {
297                            DEBUG(("trying %s...\n", current_driver->name));
298                            if (current_driver->wave_out_open())
299                            {
300                                    DEBUG(("selected %s\n", current_driver->name));
301                                    return True;
302                            }
303                            g_dsp_fd = 0;
304                            current_driver = current_driver->next;
305                    }
306    
307                    warning("no working audio-driver found\n");
308                    failed = True;
309                    current_driver = auto_driver;
310            }
311    
312            return False;
313    }
314    
315    static void
316    rdpsnd_register_drivers(char *options)
317    {
318            struct audio_driver **reg;
319    
320            /* The order of registrations define the probe-order
321               when opening the device for the first time */
322            reg = &drivers;
323    #if defined(RDPSND_ALSA)
324            *reg = alsa_register(options);
325            assert(*reg);
326            reg = &((*reg)->next);
327    #endif
328    #if defined(RDPSND_SUN)
329            *reg = sun_register(options);
330            assert(*reg);
331            reg = &((*reg)->next);
332    #endif
333    #if defined(RDPSND_OSS)
334            *reg = oss_register(options);
335            assert(*reg);
336            reg = &((*reg)->next);
337    #endif
338    #if defined(RDPSND_SGI)
339            *reg = sgi_register(options);
340            assert(*reg);
341            reg = &((*reg)->next);
342    #endif
343    #if defined(RDPSND_LIBAO)
344            *reg = libao_register(options);
345            assert(*reg);
346            reg = &((*reg)->next);
347    #endif
348    }
349    
350  BOOL  BOOL
351  rdpsnd_init(void)  rdpsnd_init(char *optarg)
352  {  {
353            static struct audio_driver auto_driver;
354            struct audio_driver *pos;
355            char *driver = NULL, *options = NULL;
356    
357            drivers = NULL;
358    
359          rdpsnd_channel =          rdpsnd_channel =
360                  channel_register("rdpsnd", CHANNEL_OPTION_INITIALIZED | CHANNEL_OPTION_ENCRYPT_RDP,                  channel_register("rdpsnd", CHANNEL_OPTION_INITIALIZED | CHANNEL_OPTION_ENCRYPT_RDP,
361                                   rdpsnd_process);                                   rdpsnd_process);
362          return (rdpsnd_channel != NULL);  
363            if (rdpsnd_channel == NULL)
364            {
365                    error("channel_register\n");
366                    return False;
367            }
368    
369            rdpsnd_queue_init();
370    
371            if (optarg != NULL && strlen(optarg) > 0)
372            {
373                    driver = options = optarg;
374    
375                    while (*options != '\0' && *options != ':')
376                            options++;
377    
378                    if (*options == ':')
379                    {
380                            *options = '\0';
381                            options++;
382                    }
383    
384                    if (*options == '\0')
385                            options = NULL;
386            }
387    
388            rdpsnd_register_drivers(options);
389    
390            if (!driver)
391            {
392                    auto_driver.wave_out_open = &rdpsnd_auto_open;
393                    current_driver = &auto_driver;
394                    return True;
395            }
396    
397            pos = drivers;
398            while (pos != NULL)
399            {
400                    if (!strcmp(pos->name, driver))
401                    {
402                            DEBUG(("selected %s\n", pos->name));
403                            current_driver = pos;
404                            return True;
405                    }
406                    pos = pos->next;
407            }
408            return False;
409    }
410    
411    void
412    rdpsnd_show_help(void)
413    {
414            struct audio_driver *pos;
415    
416            rdpsnd_register_drivers(NULL);
417    
418            pos = drivers;
419            while (pos != NULL)
420            {
421                    fprintf(stderr, "                     %s:\t%s\n", pos->name, pos->description);
422                    pos = pos->next;
423            }
424    }
425    
426    void
427    rdpsnd_play(void)
428    {
429            current_driver->wave_out_play();
430    }
431    
432    void
433    rdpsnd_add_fds(int *n, fd_set * rfds, fd_set * wfds, struct timeval *tv)
434    {
435            long next_pending;
436    
437            if (g_dsp_busy)
438            {
439                    FD_SET(g_dsp_fd, wfds);
440                    *n = (g_dsp_fd > *n) ? g_dsp_fd : *n;
441            }
442    
443            next_pending = rdpsnd_queue_next_completion();
444            if (next_pending >= 0)
445            {
446                    long cur_timeout;
447    
448                    cur_timeout = tv->tv_sec * 1000000 + tv->tv_usec;
449                    if (cur_timeout > next_pending)
450                    {
451                            tv->tv_sec = next_pending / 1000000;
452                            tv->tv_usec = next_pending % 1000000;
453                    }
454            }
455    }
456    
457    void
458    rdpsnd_check_fds(fd_set * rfds, fd_set * wfds)
459    {
460            rdpsnd_queue_complete_pending();
461    
462            if (g_dsp_busy && FD_ISSET(g_dsp_fd, wfds))
463                    rdpsnd_play();
464    }
465    
466    static void
467    rdpsnd_queue_write(STREAM s, uint16 tick, uint8 index)
468    {
469            struct audio_packet *packet = &packet_queue[queue_hi];
470            unsigned int next_hi = (queue_hi + 1) % MAX_QUEUE;
471    
472            if (next_hi == queue_pending)
473            {
474                    error("No space to queue audio packet\n");
475                    return;
476            }
477    
478            queue_hi = next_hi;
479    
480            packet->s = *s;
481            packet->tick = tick;
482            packet->index = index;
483    
484            gettimeofday(&packet->arrive_tv, NULL);
485    
486            if (!g_dsp_busy)
487                    current_driver->wave_out_play();
488    }
489    
490    struct audio_packet *
491    rdpsnd_queue_current_packet(void)
492    {
493            return &packet_queue[queue_lo];
494    }
495    
496    BOOL
497    rdpsnd_queue_empty(void)
498    {
499            return (queue_lo == queue_hi);
500    }
501    
502    static void
503    rdpsnd_queue_init(void)
504    {
505            queue_pending = queue_lo = queue_hi = 0;
506    }
507    
508    void
509    rdpsnd_queue_next(unsigned long completed_in_us)
510    {
511            struct audio_packet *packet;
512    
513            assert(!rdpsnd_queue_empty());
514    
515            packet = &packet_queue[queue_lo];
516    
517            gettimeofday(&packet->completion_tv, NULL);
518    
519            packet->completion_tv.tv_usec += completed_in_us;
520            packet->completion_tv.tv_sec += packet->completion_tv.tv_usec / 1000000;
521            packet->completion_tv.tv_usec %= 1000000;
522    
523            queue_lo = (queue_lo + 1) % MAX_QUEUE;
524    
525            rdpsnd_queue_complete_pending();
526    }
527    
528    int
529    rdpsnd_queue_next_tick(void)
530    {
531            if (((queue_lo + 1) % MAX_QUEUE) != queue_hi)
532            {
533                    return packet_queue[(queue_lo + 1) % MAX_QUEUE].tick;
534            }
535            else
536            {
537                    return (packet_queue[queue_lo].tick + 65535) % 65536;
538            }
539    }
540    
541    static void
542    rdpsnd_queue_complete_pending(void)
543    {
544            struct timeval now;
545            long elapsed;
546            struct audio_packet *packet;
547    
548            gettimeofday(&now, NULL);
549    
550            while (queue_pending != queue_lo)
551            {
552                    packet = &packet_queue[queue_pending];
553    
554                    if (now.tv_sec < packet->completion_tv.tv_sec)
555                            break;
556    
557                    if ((now.tv_sec == packet->completion_tv.tv_sec) &&
558                        (now.tv_usec < packet->completion_tv.tv_usec))
559                            break;
560    
561                    elapsed = (packet->completion_tv.tv_sec - packet->arrive_tv.tv_sec) * 1000000 +
562                            (packet->completion_tv.tv_usec - packet->arrive_tv.tv_usec);
563    
564                    xfree(packet->s.data);
565                    rdpsnd_send_completion((packet->tick + elapsed) % 65536, packet->index);
566                    queue_pending = (queue_pending + 1) % MAX_QUEUE;
567            }
568    }
569    
570    static long
571    rdpsnd_queue_next_completion(void)
572    {
573            struct audio_packet *packet;
574            long remaining;
575            struct timeval now;
576    
577            if (queue_pending == queue_lo)
578                    return -1;
579    
580            gettimeofday(&now, NULL);
581    
582            packet = &packet_queue[queue_pending];
583    
584            remaining = (packet->completion_tv.tv_sec - now.tv_sec) * 1000000 +
585                    (packet->completion_tv.tv_usec - now.tv_usec);
586    
587            if (remaining < 0)
588                    return 0;
589    
590            return remaining;
591  }  }

Legend:
Removed from v.963  
changed lines
  Added in v.1302

  ViewVC Help
Powered by ViewVC 1.1.26