mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2025-01-03 14:56:34 -05:00
Feature: Added support for text streaming to use dumpfiles
This commit is contained in:
parent
054d45bf3b
commit
3e0adfe604
@ -54,6 +54,10 @@ static size_t skipchar(char *text, char skip, size_t len)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void text_to_file (source_t *source, refbuf_t *refbuf)
|
||||
{
|
||||
source_write_dumpfile(source, refbuf->data, refbuf->len);
|
||||
}
|
||||
|
||||
static refbuf_t *text_get_buffer(source_t *source)
|
||||
{
|
||||
@ -97,7 +101,7 @@ int format_text_get_plugin(source_t *source)
|
||||
plugin->write_buf_to_client = format_generic_write_to_client;
|
||||
plugin->create_client_data = NULL;
|
||||
plugin->free_plugin = text_free_plugin;
|
||||
plugin->write_buf_to_file = NULL;
|
||||
plugin->write_buf_to_file = text_to_file;
|
||||
plugin->set_tag = NULL;
|
||||
plugin->apply_settings = NULL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user