pvr.octonet/src/rtsp_client.hpp

13 lines
305 B
C++
Raw Permalink Normal View History

#ifndef _RTSP_CLIENT_HPP_
#define _RTSP_CLIENT_HPP_
#include <string>
#include <xbmc_pvr_types.h>
2016-11-10 11:33:56 +01:00
bool rtsp_open(const std::string& name, const std::string& url_str);
void rtsp_close();
int rtsp_read(void *buf, unsigned buf_size);
void rtsp_fill_signal_status(PVR_SIGNAL_STATUS& signal_status);
#endif