Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

95 Zeilen
2.9KB

  1. /*
  2. * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
  3. *
  4. * This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
  5. *
  6. * Use of this source code is governed by MIT license that can be found in the
  7. * LICENSE file in the root of the source tree. All contributing project authors
  8. * may be found in the AUTHORS file in the root of the source tree.
  9. */
  10. #ifndef MK_PUSHER_H
  11. #define MK_PUSHER_H
  12. #include "mk_common.h"
  13. #include "mk_events_objects.h"
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. typedef void* mk_pusher;
  18. /**
  19. * 推流结果或推流中断事件的回调
  20. * @param user_data 用户数据指针
  21. * @param err_code 错误代码,0为成功
  22. * @param err_msg 错误提示
  23. */
  24. typedef void(API_CALL *on_mk_push_event)(void *user_data,int err_code,const char *err_msg);
  25. /**
  26. * 绑定的MediaSource对象并创建rtmp[s]/rtsp[s]推流器
  27. * MediaSource通过mk_media_create或mk_proxy_player_create或推流生成
  28. * 该MediaSource对象必须已注册
  29. *
  30. * @param schema 绑定的MediaSource对象所属协议,支持rtsp/rtmp
  31. * @param vhost 绑定的MediaSource对象的虚拟主机,一般为__defaultVhost__
  32. * @param app 绑定的MediaSource对象的应用名,一般为live
  33. * @param stream 绑定的MediaSource对象的流id
  34. * @return 对象指针
  35. */
  36. API_EXPORT mk_pusher API_CALL mk_pusher_create(const char *schema,const char *vhost,const char *app, const char *stream);
  37. /**
  38. * 绑定的MediaSource对象并创建rtmp[s]/rtsp[s]推流器
  39. * MediaSource通过mk_media_create或mk_proxy_player_create或推流生成
  40. * 该MediaSource对象必须已注册
  41. *
  42. * @param src MediaSource对象
  43. * @return 对象指针
  44. */
  45. API_EXPORT mk_pusher API_CALL mk_pusher_create_src(mk_media_source src);
  46. /**
  47. * 释放推流器
  48. * @param ctx 推流器指针
  49. */
  50. API_EXPORT void API_CALL mk_pusher_release(mk_pusher ctx);
  51. /**
  52. * 设置推流器配置选项
  53. * @param ctx 推流器指针
  54. * @param key 配置项键,支持 net_adapter/rtp_type/rtsp_user/rtsp_pwd/protocol_timeout_ms/media_timeout_ms/beat_interval_ms
  55. * @param val 配置项值,如果是整形,需要转换成统一转换成string
  56. */
  57. API_EXPORT void API_CALL mk_pusher_set_option(mk_pusher ctx, const char *key, const char *val);
  58. /**
  59. * 开始推流
  60. * @param ctx 推流器指针
  61. * @param url 推流地址,支持rtsp[s]/rtmp[s]
  62. */
  63. API_EXPORT void API_CALL mk_pusher_publish(mk_pusher ctx,const char *url);
  64. /**
  65. * 设置推流器推流结果回调函数
  66. * @param ctx 推流器指针
  67. * @param cb 回调函数指针,不得为null
  68. * @param user_data 用户数据指针
  69. */
  70. API_EXPORT void API_CALL mk_pusher_set_on_result(mk_pusher ctx, on_mk_push_event cb, void *user_data);
  71. /**
  72. * 设置推流被异常中断的回调
  73. * @param ctx 推流器指针
  74. * @param cb 回调函数指针,不得为null
  75. * @param user_data 用户数据指针
  76. */
  77. API_EXPORT void API_CALL mk_pusher_set_on_shutdown(mk_pusher ctx, on_mk_push_event cb, void *user_data);
  78. #ifdef __cplusplus
  79. }
  80. #endif
  81. #endif //MK_PUSHER_H