mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-29 00:23:23 -05:00
709d99d4c4
Make it easier to add new parameters later, get rid of redundant code, clean up, align between httpd_xxx modules and introduce new bugs. Yes, the refactor got a bit out of hand.
29 lines
631 B
C
29 lines
631 B
C
|
|
#ifndef __HTTPD_STREAMING_H__
|
|
#define __HTTPD_STREAMING_H__
|
|
|
|
#include "httpd.h"
|
|
|
|
/* httpd_streaming takes care of incoming requests to /stream.mp3
|
|
* It will receive decoded audio from the player, and encode it, and
|
|
* stream it to one or more clients. It will not be available
|
|
* if a suitable ffmpeg/libav encoder is not present at runtime.
|
|
*/
|
|
|
|
void
|
|
streaming_write(uint8_t *buf, uint64_t rtptime);
|
|
|
|
int
|
|
streaming_request(struct evhttp_request *req, struct httpd_uri_parsed *uri_parsed);
|
|
|
|
int
|
|
streaming_is_request(const char *path);
|
|
|
|
int
|
|
streaming_init(void);
|
|
|
|
void
|
|
streaming_deinit(void);
|
|
|
|
#endif /* !__HTTPD_STREAMING_H__ */
|