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
|
|
|
|
*/
|
|
|
|
|
|
2019-12-27 10:10:31 +08:00
|
|
|
|
#include "mk_proxyplayer.h"
|
2019-12-17 18:45:31 +08:00
|
|
|
|
#include "Player/PlayerProxy.h"
|
|
|
|
|
|
|
|
|
|
using namespace toolkit;
|
|
|
|
|
using namespace mediakit;
|
|
|
|
|
|
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) {
|
|
|
|
|
assert(vhost && app && stream);
|
2022-03-12 13:19:21 +08:00
|
|
|
|
ProtocolOption option;
|
|
|
|
|
option.enable_hls = hls_enabled;
|
|
|
|
|
option.enable_mp4 = mp4_enabled;
|
|
|
|
|
PlayerProxy::Ptr *obj(new PlayerProxy::Ptr(new PlayerProxy(vhost, app, stream, option)));
|
2019-12-17 18:45:31 +08:00
|
|
|
|
return (mk_proxy_player) obj;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
API_EXPORT void API_CALL mk_proxy_player_release(mk_proxy_player ctx) {
|
2019-12-18 14:43:32 +08:00
|
|
|
|
assert(ctx);
|
2019-12-17 18:45:31 +08:00
|
|
|
|
PlayerProxy::Ptr *obj = (PlayerProxy::Ptr *) ctx;
|
|
|
|
|
delete obj;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-18 14:43:32 +08:00
|
|
|
|
API_EXPORT void API_CALL mk_proxy_player_set_option(mk_proxy_player ctx, const char *key, const char *val){
|
|
|
|
|
assert(ctx && key && val);
|
|
|
|
|
PlayerProxy::Ptr &obj = *((PlayerProxy::Ptr *) ctx);
|
2022-02-02 20:34:50 +08:00
|
|
|
|
std::string key_str(key), val_str(val);
|
2019-12-18 14:43:32 +08:00
|
|
|
|
obj->getPoller()->async([obj,key_str,val_str](){
|
|
|
|
|
//切换线程再操作
|
|
|
|
|
(*obj)[key_str] = val_str;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-17 18:45:31 +08:00
|
|
|
|
API_EXPORT void API_CALL mk_proxy_player_play(mk_proxy_player ctx, const char *url) {
|
2019-12-18 14:43:32 +08:00
|
|
|
|
assert(ctx && url);
|
|
|
|
|
PlayerProxy::Ptr &obj = *((PlayerProxy::Ptr *) ctx);
|
2022-02-02 20:34:50 +08:00
|
|
|
|
std::string url_str(url);
|
2019-12-18 14:43:32 +08:00
|
|
|
|
obj->getPoller()->async([obj,url_str](){
|
|
|
|
|
//切换线程再操作
|
|
|
|
|
obj->play(url_str);
|
|
|
|
|
});
|
2019-12-17 18:45:31 +08:00
|
|
|
|
}
|
2020-03-10 22:55:19 +08:00
|
|
|
|
|
|
|
|
|
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
|
|
|
|
mk_proxy_player_set_on_close2(ctx, cb, user_data, nullptr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
assert(ctx);
|
2023-02-11 15:14:18 +08:00
|
|
|
|
PlayerProxy::Ptr &obj = *((PlayerProxy::Ptr *)ctx);
|
|
|
|
|
std::shared_ptr<void> ptr(user_data, user_data_free ? user_data_free : [](void *) {});
|
|
|
|
|
obj->getPoller()->async([obj, cb, ptr]() {
|
|
|
|
|
// 切换线程再操作
|
|
|
|
|
obj->setOnClose([cb, ptr](const SockException &ex) {
|
|
|
|
|
if (cb) {
|
|
|
|
|
cb(ptr.get(), ex.getErrCode(), ex.what(), ex.getCustomCode());
|
2020-03-10 22:55:19 +08:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
API_EXPORT int API_CALL mk_proxy_player_total_reader_count(mk_proxy_player ctx){
|
|
|
|
|
assert(ctx);
|
|
|
|
|
PlayerProxy::Ptr &obj = *((PlayerProxy::Ptr *) ctx);
|
|
|
|
|
return obj->totalReaderCount();
|
|
|
|
|
}
|