mirror of
https://github.com/DigitalDevices/pvr.octonet.git
synced 2023-10-10 13:36:57 +02:00
11 lines
188 B
C++
11 lines
188 B
C++
|
#ifndef _RTSP_CLIENT_HPP_
|
||
|
#define _RTSP_CLIENT_HPP_
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
bool rtsp_open(const std::string& url_str);
|
||
|
void rtsp_close();
|
||
|
int rtsp_read(void *buf, unsigned buf_size);
|
||
|
|
||
|
#endif
|