make eolspace

git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1470 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2007-06-11 12:17:40 +00:00
parent 00da37f2c4
commit a4fed0fbb5
22 changed files with 215 additions and 215 deletions

View file

@ -52,7 +52,7 @@ typedef enum pa_sink_input_flags {
struct pa_sink_input {
pa_msgobject parent;
uint32_t index;
pa_core *core;
pa_atomic_t state;
@ -66,11 +66,11 @@ struct pa_sink_input {
pa_sample_spec sample_spec;
pa_channel_map channel_map;
pa_cvolume volume;
int muted;
int (*process_msg)(pa_sink_input *i, int code, void *userdata);
int (*process_msg)(pa_sink_input *i, int code, void *userdata);
int (*peek) (pa_sink_input *i, pa_memchunk *chunk);
void (*drop) (pa_sink_input *i, const pa_memchunk *chunk, size_t length);
void (*kill) (pa_sink_input *i); /* may be NULL */
@ -81,10 +81,10 @@ struct pa_sink_input {
struct {
pa_sample_spec sample_spec;
pa_memchunk resampled_chunk;
pa_resampler *resampler; /* may be NULL */
/* Some silence to play before the actual data. This is used to
* compensate for latency differences when moving a sink input
* "hot" between sinks. */
@ -94,7 +94,7 @@ struct pa_sink_input {
pa_cvolume volume;
int muted;
} thread_info;
void *userdata;
};