pvr.octonet/src/rtsp_client.hpp

18 lines
443 B
C++
Raw Normal View History

2020-06-07 16:56:16 +02:00
/*
* Copyright (C) 2005-2020 Team Kodi
* https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSE.md for more information.
*/
#pragma once
2020-06-07 19:06:40 +02:00
#include <kodi/addon-instance/pvr/Channels.h>
2020-06-07 16:56:16 +02:00
#include <string>
2016-11-10 11:33:56 +01:00
bool rtsp_open(const std::string& name, const std::string& url_str);
void rtsp_close();
2020-06-07 16:56:16 +02:00
int rtsp_read(void* buf, unsigned buf_size);
2020-06-07 19:06:40 +02:00
void rtsp_fill_signal_status(kodi::addon::PVRSignalStatus& signal_status);