mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-05 13:29:57 -05:00
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@18 fefdeb5f-60dc-0310-8127-8f9354f1896f
28 lines
611 B
C
28 lines
611 B
C
#ifndef foosourceoutputhfoo
|
|
#define foosourceoutputhfoo
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include "source.h"
|
|
#include "sample.h"
|
|
#include "memblockq.h"
|
|
|
|
struct source_output {
|
|
uint32_t index;
|
|
|
|
char *name;
|
|
struct source *source;
|
|
struct sample_spec spec;
|
|
|
|
void (*push)(struct source_output *o, struct memchunk *chunk);
|
|
void (*kill)(struct source_output* o);
|
|
|
|
void *userdata;
|
|
};
|
|
|
|
struct source_output* source_output_new(struct source *s, struct sample_spec *spec, const char *name);
|
|
void source_output_free(struct source_output* o);
|
|
|
|
void source_output_kill(struct source_output*o);
|
|
|
|
#endif
|