Commit 7b3527e7 by xiongziliang

添加hls/mp4录制相关接口

parent aa03d7d0
...@@ -70,7 +70,7 @@ API_EXPORT int API_CALL mk_flv_recorder_start(mk_flv_recorder ctx, const char *a ...@@ -70,7 +70,7 @@ API_EXPORT int API_CALL mk_flv_recorder_start(mk_flv_recorder ctx, const char *a
* @param stream 流id * @param stream 流id
* @return 录制状态,0:未录制,1:等待MediaSource注册,注册成功后立即开始录制,2:MediaSource已注册,并且正在录制 * @return 录制状态,0:未录制,1:等待MediaSource注册,注册成功后立即开始录制,2:MediaSource已注册,并且正在录制
*/ */
API_EXPORT int mk_recorder_status(int type, const char *vhost, const char *app, const char *stream); API_EXPORT int API_CALL mk_recorder_status(int type, const char *vhost, const char *app, const char *stream);
/** /**
* 开始录制 * 开始录制
...@@ -82,7 +82,7 @@ API_EXPORT int mk_recorder_status(int type, const char *vhost, const char *app, ...@@ -82,7 +82,7 @@ API_EXPORT int mk_recorder_status(int type, const char *vhost, const char *app,
* @param continue_record 流注销时是否继续等待录制还是立即停止录制 * @param continue_record 流注销时是否继续等待录制还是立即停止录制
* @return 0代表成功,负数代表失败 * @return 0代表成功,负数代表失败
*/ */
API_EXPORT int mk_recorder_start(int type, const char *vhost, const char *app, const char *stream,bool wait_for_record, bool continue_record); API_EXPORT int API_CALL mk_recorder_start(int type, const char *vhost, const char *app, const char *stream,bool wait_for_record, bool continue_record);
/** /**
* 停止录制 * 停止录制
...@@ -92,12 +92,12 @@ API_EXPORT int mk_recorder_start(int type, const char *vhost, const char *app, c ...@@ -92,12 +92,12 @@ API_EXPORT int mk_recorder_start(int type, const char *vhost, const char *app, c
* @param stream 流id * @param stream 流id
* @return 1:成功,0:失败 * @return 1:成功,0:失败
*/ */
API_EXPORT int mk_recorder_stop(int type, const char *vhost, const char *app, const char *stream); API_EXPORT int API_CALL mk_recorder_stop(int type, const char *vhost, const char *app, const char *stream);
/** /**
* 停止所有录制,一般程序退出时调用 * 停止所有录制,一般程序退出时调用
*/ */
API_EXPORT void mk_recorder_stop_all(); API_EXPORT void API_CALL mk_recorder_stop_all();
#ifdef __cplusplus #ifdef __cplusplus
} }
......
...@@ -52,21 +52,21 @@ API_EXPORT int API_CALL mk_flv_recorder_start(mk_flv_recorder ctx, const char *a ...@@ -52,21 +52,21 @@ API_EXPORT int API_CALL mk_flv_recorder_start(mk_flv_recorder ctx, const char *a
} }
///////////////////////////////////////////hls/mp4录制///////////////////////////////////////////// ///////////////////////////////////////////hls/mp4录制/////////////////////////////////////////////
API_EXPORT int mk_recorder_status(int type, const char *vhost, const char *app, const char *stream){ API_EXPORT int API_CALL mk_recorder_status(int type, const char *vhost, const char *app, const char *stream){
assert(vhost && app && stream); assert(vhost && app && stream);
return Recorder::getRecordStatus((Recorder::type)type,vhost,app,stream); return Recorder::getRecordStatus((Recorder::type)type,vhost,app,stream);
} }
API_EXPORT int mk_recorder_start(int type, const char *vhost, const char *app, const char *stream,bool wait_for_record, bool continue_record){ API_EXPORT int API_CALL mk_recorder_start(int type, const char *vhost, const char *app, const char *stream,bool wait_for_record, bool continue_record){
assert(vhost && app && stream); assert(vhost && app && stream);
return Recorder::startRecord((Recorder::type)type,vhost,app,stream,wait_for_record,continue_record); return Recorder::startRecord((Recorder::type)type,vhost,app,stream,wait_for_record,continue_record);
} }
API_EXPORT int mk_recorder_stop(int type, const char *vhost, const char *app, const char *stream){ API_EXPORT int API_CALL mk_recorder_stop(int type, const char *vhost, const char *app, const char *stream){
assert(vhost && app && stream); assert(vhost && app && stream);
return Recorder::stopRecord((Recorder::type)type,vhost,app,stream); return Recorder::stopRecord((Recorder::type)type,vhost,app,stream);
} }
API_EXPORT void mk_recorder_stop_all(){ API_EXPORT void API_CALL mk_recorder_stop_all(){
Recorder::stopAll(); Recorder::stopAll();
} }
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论