Skip to content

Commit

Permalink
Add mk_proxy_player_create2 for support more proxy options (ZLMediaKi…
Browse files Browse the repository at this point in the history
  • Loading branch information
lidaofu-hub authored Feb 4, 2024
1 parent bfcaf15 commit 4d28b99
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
12 changes: 12 additions & 0 deletions api/include/mk_proxyplayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#define MK_PROXY_PLAYER_H_

#include "mk_common.h"
#include "mk_util.h"

#ifdef __cplusplus
extern "C" {
Expand All @@ -31,6 +32,17 @@ typedef struct mk_proxy_player_t *mk_proxy_player;
*/
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);

/**
* 创建一个代理播放器
* @param vhost 虚拟主机名,一般为__defaultVhost__
* @param app 应用名
* @param stream 流名
* @param option ProtocolOption相关配置
* @return 对象指针
*/
API_EXPORT mk_proxy_player API_CALL mk_proxy_player_create2(const char *vhost, const char *app, const char *stream, mk_ini option);


/**
* 销毁代理播放器
* @param ctx 对象指针
Expand Down
9 changes: 9 additions & 0 deletions api/source/mk_proxyplayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

#include "mk_proxyplayer.h"
#include "Player/PlayerProxy.h"
#include "mk_util.h"

using namespace toolkit;
using namespace mediakit;
Expand All @@ -23,6 +24,14 @@ API_EXPORT mk_proxy_player API_CALL mk_proxy_player_create(const char *vhost, co
return (mk_proxy_player) obj;
}

API_EXPORT mk_proxy_player API_CALL mk_proxy_player_create2(const char *vhost, const char *app, const char *stream, mk_ini ini) {
assert(vhost && app && stream);
ProtocolOption option(*((mINI *)ini));
PlayerProxy::Ptr *obj(new PlayerProxy::Ptr(new PlayerProxy(vhost, app, stream, option)));
return (mk_proxy_player)obj;
}


API_EXPORT void API_CALL mk_proxy_player_release(mk_proxy_player ctx) {
assert(ctx);
PlayerProxy::Ptr *obj = (PlayerProxy::Ptr *) ctx;
Expand Down

0 comments on commit 4d28b99

Please sign in to comment.