mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-12-24 13:30:06 +01:00
23 lines
462 B
C
23 lines
462 B
C
|
|
#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
|