No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

135 líneas
3.8KB

  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_PLAYER_H_
  11. #define MK_PLAYER_H_
  12. #include "mk_common.h"
  13. #include "mk_frame.h"
  14. #include "mk_track.h"
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. typedef void* mk_player;
  19. /**
  20. * 播放结果或播放中断事件的回调
  21. * @param user_data 用户数据指针
  22. * @param err_code 错误代码,0为成功
  23. * @param err_msg 错误提示
  24. * @param tracks track列表
  25. * @param track_count track个数
  26. */
  27. typedef void(API_CALL *on_mk_play_event)(void *user_data, int err_code, const char *err_msg, mk_track tracks[],
  28. int track_count);
  29. /**
  30. * 创建一个播放器,支持rtmp[s]/rtsp[s]
  31. * @return 播放器指针
  32. */
  33. API_EXPORT mk_player API_CALL mk_player_create();
  34. /**
  35. * 销毁播放器
  36. * @param ctx 播放器指针
  37. */
  38. API_EXPORT void API_CALL mk_player_release(mk_player ctx);
  39. /**
  40. * 设置播放器配置选项
  41. * @param ctx 播放器指针
  42. * @param key 配置项键,支持 net_adapter/rtp_type/rtsp_user/rtsp_pwd/protocol_timeout_ms/media_timeout_ms/beat_interval_ms/wait_track_ready
  43. * @param val 配置项值,如果是整形,需要转换成统一转换成string
  44. */
  45. API_EXPORT void API_CALL mk_player_set_option(mk_player ctx, const char *key, const char *val);
  46. /**
  47. * 开始播放url
  48. * @param ctx 播放器指针
  49. * @param url rtsp[s]/rtmp[s] url
  50. */
  51. API_EXPORT void API_CALL mk_player_play(mk_player ctx, const char *url);
  52. /**
  53. * 暂停或恢复播放,仅对点播有用
  54. * @param ctx 播放器指针
  55. * @param pause 1:暂停播放,0:恢复播放
  56. */
  57. API_EXPORT void API_CALL mk_player_pause(mk_player ctx, int pause);
  58. /**
  59. * 倍数播放,仅对点播有用
  60. * @param ctx 播放器指针
  61. * @param speed 0.5 1.0 2.0
  62. */
  63. API_EXPORT void API_CALL mk_player_speed(mk_player ctx, float speed);
  64. /**
  65. * 设置点播进度条
  66. * @param ctx 对象指针
  67. * @param progress 取值范围未 0.0~1.0
  68. */
  69. API_EXPORT void API_CALL mk_player_seekto(mk_player ctx, float progress);
  70. /**
  71. * 设置点播进度条
  72. * @param ctx 对象指针
  73. * @param seek_pos 取值范围 相对于开始时间增量 单位秒
  74. */
  75. API_EXPORT void API_CALL mk_player_seekto_pos(mk_player ctx, int seek_pos);
  76. /**
  77. * 设置播放器开启播放结果回调函数
  78. * @param ctx 播放器指针
  79. * @param cb 回调函数指针,设置null立即取消回调
  80. * @param user_data 用户数据指针
  81. */
  82. API_EXPORT void API_CALL mk_player_set_on_result(mk_player ctx, on_mk_play_event cb, void *user_data);
  83. /**
  84. * 设置播放被异常中断的回调
  85. * @param ctx 播放器指针
  86. * @param cb 回调函数指针,设置null立即取消回调
  87. * @param user_data 用户数据指针
  88. */
  89. API_EXPORT void API_CALL mk_player_set_on_shutdown(mk_player ctx, on_mk_play_event cb, void *user_data);
  90. ///////////////////////////获取音视频相关信息接口在播放成功回调触发后才有效///////////////////////////////
  91. /**
  92. * 获取点播节目时长,如果是直播返回0,否则返回秒数
  93. */
  94. API_EXPORT float API_CALL mk_player_duration(mk_player ctx);
  95. /**
  96. * 获取点播播放进度,取值范围 0.0~1.0
  97. */
  98. API_EXPORT float API_CALL mk_player_progress(mk_player ctx);
  99. /**
  100. * 获取点播播放进度位置,取值范围 相对于开始时间增量 单位秒
  101. */
  102. API_EXPORT int API_CALL mk_player_progress_pos(mk_player ctx);
  103. /**
  104. * 获取丢包率,rtsp时有效
  105. * @param ctx 对象指针
  106. * @param track_type 0:视频,1:音频
  107. */
  108. API_EXPORT float API_CALL mk_player_loss_rate(mk_player ctx, int track_type);
  109. #ifdef __cplusplus
  110. }
  111. #endif
  112. #endif /* MK_PLAYER_H_ */