Changeset 3134:9ad85b26c1fa in roaraudio for plugins/alsavs


Ignore:
Timestamp:
01/14/10 12:43:44 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

some very, very experimentel code that does not work at all

Location:
plugins/alsavs
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • plugins/alsavs/roar.h

    r3133 r3134  
    3737 
    3838#include <roaraudio.h> 
     39#include <errno.h> 
     40#include <alsa/asoundlib.h> 
     41#include <alsa/pcm_external.h> 
     42#include <alsa/control_external.h> 
     43 
     44#define _as(x) (sizeof((x))/sizeof(*(x))) 
     45 
     46struct roar_alsa { 
     47 struct roar_connection con; 
     48}; 
     49 
     50struct roar_alsa_pcm { 
     51 snd_pcm_ioplug_t       io; 
     52 struct roar_alsa       roar; 
     53 struct roar_audio_info info; 
     54 struct roar_stream     stream; 
     55 struct roar_vio_calls  stream_vio; 
     56 int                    stream_opened; 
     57}; 
    3958 
    4059#endif 
Note: See TracChangeset for help on using the changeset viewer.