golanggohlsrtmpwebrtcmedia-serverobs-studiortcprtmp-proxyrtmp-serverrtprtsprtsp-proxyrtsp-relayrtsp-serversrtstreamingwebrtc-proxy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
294 B
12 lines
294 B
#ifndef __PIPE_H__ |
|
#define __PIPE_H__ |
|
|
|
#include <stdbool.h> |
|
#include <stdint.h> |
|
|
|
void pipe_write_error(int fd, const char *format, ...); |
|
void pipe_write_ready(int fd); |
|
void pipe_write_buf(int fd, uint64_t ts, const uint8_t *buf, uint32_t n); |
|
uint32_t pipe_read(int fd, uint8_t **pbuf); |
|
|
|
#endif
|
|
|