1
0
mirror of https://github.com/DigitalDevices/pvr.octonet.git synced 2023-10-10 13:36:57 +02:00
pvr.octonet/src/rtsp_client.hpp
2016-10-05 10:45:05 +02:00

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