2019-12-18 11:47:49 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2019-12-17 18:45:31 +08:00
|
|
|
|
*
|
2021-01-17 18:31:50 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
2019-12-17 18:45:31 +08:00
|
|
|
|
*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Use of this source code is governed by MIT license that can be found in the
|
|
|
|
|
* LICENSE file in the root of the source tree. All contributing project authors
|
|
|
|
|
* may be found in the AUTHORS file in the root of the source tree.
|
2019-12-17 18:45:31 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef MK_PROXY_PLAYER_H_
|
|
|
|
|
#define MK_PROXY_PLAYER_H_
|
|
|
|
|
|
2019-12-27 10:10:31 +08:00
|
|
|
|
#include "mk_common.h"
|
2019-12-17 18:45:31 +08:00
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
typedef void *mk_proxy_player;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 创建一个代理播放器
|
2019-12-18 14:43:32 +08:00
|
|
|
|
* @param vhost 虚拟主机名,一般为__defaultVhost__
|
2019-12-17 18:45:31 +08:00
|
|
|
|
* @param app 应用名
|
|
|
|
|
* @param stream 流名
|
|
|
|
|
* @param rtp_type rtsp播放方式:RTP_TCP = 0, RTP_UDP = 1, RTP_MULTICAST = 2
|
|
|
|
|
* @param hls_enabled 是否生成hls
|
|
|
|
|
* @param mp4_enabled 是否生成mp4
|
|
|
|
|
* @return 对象指针
|
|
|
|
|
*/
|
2019-12-18 14:43:32 +08:00
|
|
|
|
API_EXPORT mk_proxy_player API_CALL mk_proxy_player_create(const char *vhost, const char *app, const char *stream, int hls_enabled, int mp4_enabled);
|
2019-12-17 18:45:31 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 销毁代理播放器
|
|
|
|
|
* @param ctx 对象指针
|
|
|
|
|
*/
|
|
|
|
|
API_EXPORT void API_CALL mk_proxy_player_release(mk_proxy_player ctx);
|
|
|
|
|
|
2019-12-18 14:43:32 +08:00
|
|
|
|
/**
|
|
|
|
|
* 设置代理播放器配置选项
|
|
|
|
|
* @param ctx 代理播放器指针
|
2022-05-25 15:38:32 +08:00
|
|
|
|
* @param key 配置项键,支持 net_adapter/rtp_type/rtsp_user/rtsp_pwd/protocol_timeout_ms/media_timeout_ms/beat_interval_ms
|
2019-12-18 14:43:32 +08:00
|
|
|
|
* @param val 配置项值,如果是整形,需要转换成统一转换成string
|
|
|
|
|
*/
|
|
|
|
|
API_EXPORT void API_CALL mk_proxy_player_set_option(mk_proxy_player ctx, const char *key, const char *val);
|
|
|
|
|
|
2019-12-17 18:45:31 +08:00
|
|
|
|
/**
|
|
|
|
|
* 开始播放
|
|
|
|
|
* @param ctx 对象指针
|
|
|
|
|
* @param url 播放url,支持rtsp/rtmp
|
|
|
|
|
*/
|
|
|
|
|
API_EXPORT void API_CALL mk_proxy_player_play(mk_proxy_player ctx, const char *url);
|
|
|
|
|
|
2020-03-10 22:55:19 +08:00
|
|
|
|
/**
|
|
|
|
|
* MediaSource.close()回调事件
|
|
|
|
|
* 在选择关闭一个关联的MediaSource时,将会最终触发到该回调
|
|
|
|
|
* 你应该通过该事件调用mk_proxy_player_release函数并且释放其他资源
|
|
|
|
|
* 如果你不调用mk_proxy_player_release函数,那么MediaSource.close()操作将无效
|
|
|
|
|
* @param user_data 用户数据指针,通过mk_proxy_player_set_on_close函数设置
|
|
|
|
|
*/
|
2021-06-09 15:01:45 +08:00
|
|
|
|
typedef void(API_CALL *on_mk_proxy_player_close)(void *user_data, int err, const char *what, int sys_err);
|
2020-03-10 22:55:19 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 监听MediaSource.close()事件
|
|
|
|
|
* 在选择关闭一个关联的MediaSource时,将会最终触发到该回调
|
|
|
|
|
* 你应该通过该事件调用mk_proxy_player_release函数并且释放其他资源
|
|
|
|
|
* @param ctx 对象指针
|
|
|
|
|
* @param cb 回调指针
|
|
|
|
|
* @param user_data 用户数据指针
|
|
|
|
|
*/
|
|
|
|
|
API_EXPORT void API_CALL mk_proxy_player_set_on_close(mk_proxy_player ctx, on_mk_proxy_player_close cb, void *user_data);
|
2023-02-11 15:14:18 +08:00
|
|
|
|
API_EXPORT void API_CALL mk_proxy_player_set_on_close2(mk_proxy_player ctx, on_mk_proxy_player_close cb, void *user_data, on_user_data_free user_data_free);
|
2020-03-10 22:55:19 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取总的观看人数
|
|
|
|
|
* @param ctx 对象指针
|
|
|
|
|
* @return 观看人数
|
|
|
|
|
*/
|
|
|
|
|
API_EXPORT int API_CALL mk_proxy_player_total_reader_count(mk_proxy_player ctx);
|
|
|
|
|
|
2019-12-17 18:45:31 +08:00
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif /* MK_PROXY_PLAYER_H_ */
|