initial commit

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@3 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2004-06-08 23:54:24 +00:00
parent b1c00dcd0a
commit 9cb0b933e2
47 changed files with 3425 additions and 0 deletions

22
src/outputstream.h Normal file
View file

@ -0,0 +1,22 @@
#ifndef foooutputstreamhfoo
#define foooutputstreamhfoo
#include <inttypes.h>
#include "source.h"
#include "sample.h"
#include "memblockq.h"
struct output_stream {
char *name;
uint32_t index;
struct source *source;
struct sample_spec spec;
struct memblockq *memblockq;
};
struct output_stream* output_stream_new(struct source *s, struct sample_spec *spec, const char *name);
void output_stream_free(struct output_stream* o);
#endif