summaryrefslogtreecommitdiffstats
path: root/src/sourceoutput.h
blob: 4db2362de5ef17597b9bf4a192401ddf52c87a12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef foosourceoutputhfoo
#define foosourceoutputhfoo

#include <inttypes.h>

#include "source.h"
#include "sample.h"
#include "memblockq.h"
#include "resampler.h"

struct source_output {
    uint32_t index;

    char *name;
    struct source *source;
    struct pa_sample_spec sample_spec;
    
    void (*push)(struct source_output *o, const struct memchunk *chunk);
    void (*kill)(struct source_output* o);

    struct resampler* resampler;
    
    void *userdata;
};

struct source_output* source_output_new(struct source *s, const char *name, const struct pa_sample_spec *spec);
void source_output_free(struct source_output* o);

void source_output_kill(struct source_output*o);

char *source_output_list_to_string(struct core *c);

void source_output_push(struct source_output *o, const struct memchunk *chunk);

#endif