mirror of
https://github.com/DigitalDevices/pvr.octonet.git
synced 2025-03-01 10:53:09 +00:00
17 lines
441 B
C++
17 lines
441 B
C++
/*
|
|
* Copyright (C) 2005-2021 Team Kodi (https://kodi.tv)
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* See LICENSE.md for more information.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <kodi/addon-instance/pvr/Channels.h>
|
|
#include <string>
|
|
|
|
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(kodi::addon::PVRSignalStatus& signal_status);
|