Revision 9e5d52d5 src/Chunkiser/output-stream.c
src/Chunkiser/output-stream.c | ||
---|---|---|
10 | 10 |
extern struct dechunkiser_iface out_avf; |
11 | 11 |
extern struct dechunkiser_iface out_raw; |
12 | 12 |
extern struct dechunkiser_iface out_udp; |
13 |
extern struct dechunkiser_iface out_dummy; |
|
13 | 14 |
|
14 | 15 |
struct output_stream { |
15 | 16 |
struct dechunkiser_ctx *c; |
... | ... | |
40 | 41 |
res->out = &out_raw; |
41 | 42 |
} else if (type && !strcmp(type, "udp")) { |
42 | 43 |
res->out = &out_udp; |
44 |
} else if (type && !strcmp(type, "dummy")) { |
|
45 |
res->out = &out_dummy; |
|
43 | 46 |
} else if (type && !strcmp(type, "avf")) { |
44 | 47 |
#ifdef AVF |
45 | 48 |
res->out = &out_avf; |
Also available in: Unified diff