comparison stream/audio_in.h @ 29263:0f1b5b68af32

whitespace cosmetics: Remove all trailing whitespace.
author diego
date Wed, 13 May 2009 02:58:57 +0000
parents 9d95dc936e66
children ce0122361a39
comparison
equal deleted inserted replaced
29262:7d545a6b8aff 29263:0f1b5b68af32
25 25
26 int audio_fd; 26 int audio_fd;
27 } ai_oss_t; 27 } ai_oss_t;
28 #endif 28 #endif
29 29
30 typedef struct 30 typedef struct
31 { 31 {
32 int type; 32 int type;
33 int setup; 33 int setup;
34 34
35 /* requested values */ 35 /* requested values */
36 int req_channels; 36 int req_channels;
37 int req_samplerate; 37 int req_samplerate;
38 38
39 /* real values read-only */ 39 /* real values read-only */
40 int channels; 40 int channels;
41 int samplerate; 41 int samplerate;
42 int blocksize; 42 int blocksize;
43 int bytes_per_sample; 43 int bytes_per_sample;
44 int samplesize; 44 int samplesize;
45 45
46 #ifdef CONFIG_ALSA 46 #ifdef CONFIG_ALSA
47 ai_alsa_t alsa; 47 ai_alsa_t alsa;
48 #endif 48 #endif
49 #ifdef CONFIG_OSS_AUDIO 49 #ifdef CONFIG_OSS_AUDIO
50 ai_oss_t oss; 50 ai_oss_t oss;