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

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

revision 1271 by stargo, Mon Sep 18 21:42:50 2006 UTC revision 1274 by stargo, Sun Oct 1 11:00:03 2006 UTC
# Line 276  rdpsnd_process(STREAM s) Line 276  rdpsnd_process(STREAM s)
276          }          }
277  }  }
278    
279  BOOL  static BOOL
 rdpsnd_init(void)  
 {  
         rdpsnd_channel =  
                 channel_register("rdpsnd", CHANNEL_OPTION_INITIALIZED | CHANNEL_OPTION_ENCRYPT_RDP,  
                                  rdpsnd_process);  
   
         return (rdpsnd_channel != NULL);  
 }  
   
 BOOL  
280  rdpsnd_auto_open(void)  rdpsnd_auto_open(void)
281  {  {
282          static BOOL failed = False;          static BOOL failed = False;
# Line 316  rdpsnd_auto_open(void) Line 306  rdpsnd_auto_open(void)
306          return False;          return False;
307  }  }
308    
309  void  static void
310  rdpsnd_register_drivers(char *options)  rdpsnd_register_drivers(char *options)
311  {  {
312          struct audio_driver **reg;          struct audio_driver **reg;
# Line 347  rdpsnd_register_drivers(char *options) Line 337  rdpsnd_register_drivers(char *options)
337  }  }
338    
339  BOOL  BOOL
340  rdpsnd_select_driver(char *driver, char *options)  rdpsnd_init(char *optarg)
341  {  {
342          static struct audio_driver auto_driver;          static struct audio_driver auto_driver;
343          struct audio_driver *pos;          struct audio_driver *pos;
344            char *driver = NULL, *options = NULL;
345    
346          drivers = NULL;          drivers = NULL;
347    
348            rdpsnd_channel =
349                    channel_register("rdpsnd", CHANNEL_OPTION_INITIALIZED | CHANNEL_OPTION_ENCRYPT_RDP,
350                                     rdpsnd_process);
351    
352            if (rdpsnd_channel == NULL)
353            {
354                    error("channel_register\n");
355                    return False;
356            }
357    
358            if (optarg != NULL && strlen(optarg) > 0)
359            {
360                    driver = options = optarg;
361    
362                    while (*options != '\0' && *options != ':')
363                            options++;
364    
365                    if (*options == ':')
366                    {
367                            *options = '\0';
368                            options++;
369                    }
370    
371                    if (*options == '\0')
372                            options = NULL;
373            }
374    
375          rdpsnd_register_drivers(options);          rdpsnd_register_drivers(options);
376    
377          if (!driver)          if (!driver)
# Line 391  rdpsnd_show_help(void) Line 410  rdpsnd_show_help(void)
410          }          }
411  }  }
412    
413  inline void  void
414  rdpsnd_play(void)  rdpsnd_play(void)
415  {  {
416          current_driver->wave_out_play();          current_driver->wave_out_play();
417  }  }
418    
419  void  inline void
420  rdpsnd_queue_write(STREAM s, uint16 tick, uint8 index)  rdpsnd_queue_write(STREAM s, uint16 tick, uint8 index)
421  {  {
422          struct audio_packet *packet = &packet_queue[queue_hi];          struct audio_packet *packet = &packet_queue[queue_hi];

Legend:
Removed from v.1271  
changed lines
  Added in v.1274

  ViewVC Help
Powered by ViewVC 1.1.26