|
@@ -4,7 +4,7 @@
|
|
|
* @Autor: lishengyin
|
|
|
* @Date: 2021-10-13 09:35:37
|
|
|
* @LastEditors: lishengyin
|
|
|
- * @LastEditTime: 2022-01-05 09:23:06
|
|
|
+ * @LastEditTime: 2022-01-06 15:13:45
|
|
|
*/
|
|
|
#include "inference.h"
|
|
|
|
|
@@ -56,19 +56,8 @@ std::shared_ptr<InferInfo> g_InferInfo = NULL;
|
|
|
map<string, map<int, queue<std::shared_ptr<cv::Mat>>>> m_frames;
|
|
|
|
|
|
namespace MIVA{
|
|
|
- std::shared_ptr<Inference> infer = NULL;
|
|
|
- ThreadPool pool(2,ThreadPool::PRIORITY_HIGHEST, false);
|
|
|
- /**
|
|
|
- * @description: 创建对象
|
|
|
- * @param {*}
|
|
|
- * @return {*} 智能指针
|
|
|
- * @author: lishengyin
|
|
|
- */
|
|
|
- std::shared_ptr<Inference> Inference::CreateNew()
|
|
|
- {
|
|
|
- if(infer == NULL) infer = std::make_shared<Inference>();
|
|
|
- return infer;
|
|
|
- }
|
|
|
+ ThreadPool pool(4,ThreadPool::PRIORITY_HIGHEST, false);
|
|
|
+
|
|
|
Inference::Inference()
|
|
|
{
|
|
|
|
|
@@ -76,16 +65,24 @@ namespace MIVA{
|
|
|
Inference::~Inference()
|
|
|
{
|
|
|
DebugL << "Returned, stopping playback" << endl;
|
|
|
- GstState state;
|
|
|
- gst_element_get_state(this->pipeline,&state,NULL, GST_CLOCK_TIME_NONE);
|
|
|
- if(state == GST_STATE_PLAYING) gst_element_set_state(this->pipeline, GST_STATE_PAUSED);
|
|
|
- gst_element_set_state(this->pipeline, GST_STATE_NULL);
|
|
|
+ // GstState state;
|
|
|
+ GstStateChangeReturn state_return;
|
|
|
+ // gst_element_get_state(this->pipeline,&state,NULL, GST_CLOCK_TIME_NONE);
|
|
|
+ // if(state == GST_STATE_PLAYING){
|
|
|
+ // DebugL << "pipeline状态设置为暂停" << endl;
|
|
|
+ // state_return = gst_element_set_state(this->pipeline, GST_STATE_PAUSED);
|
|
|
+ // StateResulit(state_return);
|
|
|
+ // }
|
|
|
g_main_loop_quit (this->loop);
|
|
|
+ state_return = gst_element_set_state(this->pipeline, GST_STATE_NULL);
|
|
|
+ StateResulit(state_return);
|
|
|
DebugL << "Deleting pipeline";
|
|
|
+
|
|
|
gst_object_unref(GST_OBJECT(this->pipeline));
|
|
|
g_source_remove(this->bus_watch_id);
|
|
|
g_main_loop_unref(this->loop);
|
|
|
g_mutex_clear (&eos_lock);
|
|
|
+
|
|
|
this->m_InferInfo = NULL;
|
|
|
}
|
|
|
/**
|
|
@@ -185,7 +182,7 @@ namespace MIVA{
|
|
|
WarnL << "WARNING: Overriding infer-config batch-size:" << this->pgie_batch_size << "with number of sources ("<< g_num_sources << ")";
|
|
|
g_object_set (G_OBJECT (this->pgie), "batch-size", g_num_sources, NULL);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
// this->tiler_rows = (guint) sqrt (g_num_sources);
|
|
|
// this->tiler_columns = (guint) ceil (1.0 * g_num_sources / this->tiler_rows);
|
|
|
|
|
@@ -203,16 +200,17 @@ namespace MIVA{
|
|
|
gst_object_unref (this->bus);
|
|
|
|
|
|
gst_bin_add_many (GST_BIN (this->pipeline), this->queue1, this->pgie, this->queue2, this->nvvidconv, this->queue3,
|
|
|
- this->nvosd, this->queue4, this->sink, NULL);
|
|
|
+ this->nvosd, this->queue4,this->sink, NULL);
|
|
|
|
|
|
if (!gst_element_link_many (streammux, this->queue1, this->pgie, this->queue2, this->nvvidconv, this->queue3,
|
|
|
- this->nvosd, this->queue4, this->sink, NULL)) {
|
|
|
+ this->nvosd, this->queue4,this->sink, NULL)) {
|
|
|
ErrorL << "Elements could not be linked. Exiting.";
|
|
|
return -1;
|
|
|
}
|
|
|
// this->tiler, this->queue4,
|
|
|
-
|
|
|
- this->tiler_sink_pad = gst_element_get_static_pad (this->queue3, "sink");
|
|
|
+ // this->nvosd, this->queue4,
|
|
|
+
|
|
|
+ this->tiler_sink_pad = gst_element_get_static_pad (this->nvvidconv, "src");
|
|
|
gst_pad_add_probe (this->tiler_sink_pad, GST_PAD_PROBE_TYPE_BUFFER,
|
|
|
tiler_sink_pad_buffer_probe, NULL, NULL);
|
|
|
|
|
@@ -223,17 +221,6 @@ namespace MIVA{
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * @description: 准备任务
|
|
|
- * @param {*}
|
|
|
- * @return {*}
|
|
|
- * @author: lishengyin
|
|
|
- */
|
|
|
- void Inference::ReadyTask()
|
|
|
- {
|
|
|
- InfoL << "Now ReadyTask";
|
|
|
- gst_element_set_state(this->pipeline, GST_STATE_READY);
|
|
|
- }
|
|
|
- /**
|
|
|
* @description: 启动任务
|
|
|
* @param {*}
|
|
|
* @return {*}
|
|
@@ -241,22 +228,18 @@ namespace MIVA{
|
|
|
*/
|
|
|
int32_t Inference::StartTask()
|
|
|
{
|
|
|
- InfoL << "Now palying";
|
|
|
-
|
|
|
- GstState state;
|
|
|
- gst_element_get_state(this->pipeline,&state,NULL, GST_CLOCK_TIME_NONE);
|
|
|
- DebugL << "state:" << state << endl;
|
|
|
- if(state == GST_STATE_NULL){
|
|
|
- pool.async([&](){
|
|
|
+ static int num = 0;
|
|
|
+ InfoL << "启动" << endl;
|
|
|
+ pool.async([&](){
|
|
|
+ if(num == 0){
|
|
|
+ num++;
|
|
|
if(m_recorder != nullptr && this->RestartTask() == OK) m_recorder->Start();
|
|
|
// 不能去掉, 去掉会触发Deepstream内部句柄无法释放的Bug
|
|
|
g_main_loop_run(this->loop);
|
|
|
- });
|
|
|
- }else{
|
|
|
- pool.async([&](){
|
|
|
+ }else{
|
|
|
if(m_recorder != nullptr && this->RestartTask() == OK) m_recorder->Start();
|
|
|
- });
|
|
|
- }
|
|
|
+ }
|
|
|
+ });
|
|
|
pool.start();
|
|
|
return OK;
|
|
|
}
|
|
@@ -279,37 +262,20 @@ namespace MIVA{
|
|
|
*/
|
|
|
void Inference::StopTask()
|
|
|
{
|
|
|
- int sourceId = 0;
|
|
|
GstStateChangeReturn state_return;
|
|
|
std::vector<DataSource>::iterator iter;
|
|
|
// gst_element_set_state(this->pipeline, GST_STATE_PAUSED);
|
|
|
for (iter = this->m_InferInfo->DataSources.begin(); iter != this->m_InferInfo->DataSources.end(); iter++){
|
|
|
if(iter->source_bin != NULL){
|
|
|
state_return = gst_element_set_state(iter->source_bin, GST_STATE_NULL);
|
|
|
- switch (state_return) {
|
|
|
- case GST_STATE_CHANGE_SUCCESS:
|
|
|
- InfoL << "STATE CHANGE SUCCESS";
|
|
|
- break;
|
|
|
- case GST_STATE_CHANGE_FAILURE:
|
|
|
- WarnL << "STATE CHANGE FAILURE";
|
|
|
- break;
|
|
|
- case GST_STATE_CHANGE_ASYNC:
|
|
|
- ErrorL << "STATE CHANGE ASYNC";
|
|
|
- break;
|
|
|
- case GST_STATE_CHANGE_NO_PREROLL:
|
|
|
- ErrorL << "STATE CHANGE NO PREROLL";
|
|
|
- break;
|
|
|
- default:
|
|
|
- break;
|
|
|
- }
|
|
|
+ StateResulit(state_return);
|
|
|
}
|
|
|
- sourceId++;
|
|
|
}
|
|
|
-
|
|
|
+ // state_return = gst_element_set_state(this->streammux, GST_STATE_NULL);
|
|
|
+ // StateResulit(state_return);
|
|
|
if(m_recorder != nullptr){
|
|
|
m_recorder->Finish();
|
|
|
}
|
|
|
-
|
|
|
this->Play = false;
|
|
|
NoticeCenter::Instance().emitEvent(NOTICE_RELEASE);
|
|
|
}
|
|
@@ -332,36 +298,70 @@ namespace MIVA{
|
|
|
this->Play = false;
|
|
|
return ERR;
|
|
|
}
|
|
|
- DebugL << "RestartTask" << endl;
|
|
|
+ DebugL << "StartTask" << endl;
|
|
|
GstState state;
|
|
|
- gst_element_get_state(this->pipeline,&state,NULL, GST_CLOCK_TIME_NONE);
|
|
|
- DebugL << "state:" << state << endl;
|
|
|
-
|
|
|
- if(state == GST_STATE_PLAYING){
|
|
|
- gst_element_set_state(this->pipeline, GST_STATE_PAUSED);
|
|
|
- for (iter = this->m_InferInfo->DataSources.begin(); iter != this->m_InferInfo->DataSources.end(); iter++){
|
|
|
- if(iter->source_bin != NULL){
|
|
|
- gst_element_set_state(iter->source_bin, GST_STATE_PLAYING);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- gst_element_set_state(this->pipeline, GST_STATE_PLAYING);
|
|
|
+ GstStateChangeReturn state_return;
|
|
|
+ state_return = gst_element_set_state(this->pipeline, GST_STATE_PAUSED);
|
|
|
+ // gst_element_get_state(this->pipeline,&state,NULL, GST_CLOCK_TIME_NONE);
|
|
|
+ // if(state == GST_STATE_PLAYING){
|
|
|
+ // state_return = gst_element_set_state(this->pipeline, GST_STATE_PAUSED);
|
|
|
+ // StateResulit(state_return);
|
|
|
+ // // for (iter = this->m_InferInfo->DataSources.begin(); iter != this->m_InferInfo->DataSources.end(); iter++){
|
|
|
+ // // if(iter->source_bin != NULL){
|
|
|
+ // // state_return = gst_element_set_state(iter->source_bin, GST_STATE_PLAYING);
|
|
|
+ // // StateResulit(state_return);
|
|
|
+ // // }
|
|
|
+ // // }
|
|
|
+ // }
|
|
|
+ state_return = gst_element_set_state(this->pipeline, GST_STATE_PLAYING);
|
|
|
+ StateResulit(state_return);
|
|
|
+
|
|
|
m_frames.clear();
|
|
|
this->Play = true;
|
|
|
return OK;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * @description: 释放数据
|
|
|
+ * @description: 暂停
|
|
|
* @param {*}
|
|
|
* @return {*}
|
|
|
- * @author: lishengyin
|
|
|
*/
|
|
|
- void Inference::Destory()
|
|
|
- {
|
|
|
- infer = NULL;
|
|
|
+ void Inference::PausedTask(){
|
|
|
+ GstState state;
|
|
|
+ GstStateChangeReturn state_return;
|
|
|
+ gst_element_get_state(this->pipeline,&state,NULL, GST_CLOCK_TIME_NONE);
|
|
|
+ if(state == GST_STATE_PLAYING){
|
|
|
+ state_return = gst_element_set_state(this->pipeline, GST_STATE_PAUSED);
|
|
|
+ StateResulit(state_return);
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @description: 状态返回
|
|
|
+ * @param {*}
|
|
|
+ * @return {*}
|
|
|
+ */
|
|
|
+ void Inference::StateResulit(GstStateChangeReturn& state_return)
|
|
|
+ {
|
|
|
+ switch (state_return) {
|
|
|
+ case GST_STATE_CHANGE_SUCCESS:
|
|
|
+ InfoL << "STATE CHANGE SUCCESS";
|
|
|
+ break;
|
|
|
+ case GST_STATE_CHANGE_FAILURE:
|
|
|
+ WarnL << "STATE CHANGE FAILURE";
|
|
|
+ break;
|
|
|
+ case GST_STATE_CHANGE_ASYNC:
|
|
|
+ ErrorL << "STATE CHANGE ASYNC";
|
|
|
+ break;
|
|
|
+ case GST_STATE_CHANGE_NO_PREROLL:
|
|
|
+ ErrorL << "STATE CHANGE NO PREROLL";
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ ErrorL << "状态未知" << endl;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* @description: osd_sink探头
|
|
|
* @param {GstPad *} pad
|
|
@@ -719,6 +719,25 @@ namespace MIVA{
|
|
|
gst_bin_remove (GST_BIN (this->pipeline), this->m_InferInfo->DataSources[source_id].source_bin);
|
|
|
}else{
|
|
|
ErrorL << "该source_bin未设置为NULL" << endl;
|
|
|
+ GstStateChangeReturn state_return = gst_element_set_state(this->m_InferInfo->DataSources[source_id].source_bin, GST_STATE_NULL);
|
|
|
+ switch (state_return) {
|
|
|
+ case GST_STATE_CHANGE_SUCCESS:
|
|
|
+ InfoL << "STATE CHANGE SUCCESS";
|
|
|
+ gst_bin_remove (GST_BIN (this->pipeline), this->m_InferInfo->DataSources[source_id].source_bin);
|
|
|
+ DebugL << "该source_bin移除成功" << endl;
|
|
|
+ break;
|
|
|
+ case GST_STATE_CHANGE_FAILURE:
|
|
|
+ WarnL << "STATE CHANGE FAILURE";
|
|
|
+ break;
|
|
|
+ case GST_STATE_CHANGE_ASYNC:
|
|
|
+ ErrorL << "STATE CHANGE ASYNC";
|
|
|
+ break;
|
|
|
+ case GST_STATE_CHANGE_NO_PREROLL:
|
|
|
+ ErrorL << "STATE CHANGE NO PREROLL";
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
}
|
|
|
g_mutex_unlock (&eos_lock);
|
|
|
}
|
|
@@ -772,7 +791,7 @@ namespace MIVA{
|
|
|
bin = gst_element_factory_make ("uridecodebin", bin_name);
|
|
|
|
|
|
// 设置为低延迟模式
|
|
|
- // g_object_set (G_OBJECT (bin), "buffer-size", 3, NULL);
|
|
|
+ // g_object_set (G_OBJECT (bin), "buffer-duration", 1, NULL);
|
|
|
// g_object_set (G_OBJECT (bin), "use-buffering", TRUE, NULL);
|
|
|
|
|
|
g_object_set (G_OBJECT (bin), "uri", filename, NULL);
|
|
@@ -845,5 +864,19 @@ namespace MIVA{
|
|
|
if(this->m_InferInfo->DataSources[sourceId].source_bin != NULL)
|
|
|
gst_bin_add (GST_BIN (this->pipeline), this->m_InferInfo->DataSources[sourceId].source_bin);
|
|
|
}
|
|
|
-}
|
|
|
|
|
|
+ void Inference::CheckTask()
|
|
|
+ {
|
|
|
+ GstState state;
|
|
|
+ GstStateChangeReturn state_return;
|
|
|
+ for (auto iter = this->m_InferInfo->DataSources.begin(); iter != this->m_InferInfo->DataSources.end(); iter++){
|
|
|
+ if(iter->source_bin != NULL){
|
|
|
+ gst_element_get_state(iter->source_bin,&state,NULL, GST_CLOCK_TIME_NONE);
|
|
|
+ if(state == GST_STATE_PLAYING){
|
|
|
+ state_return = gst_element_set_state(iter->source_bin, GST_STATE_NULL);
|
|
|
+ StateResulit(state_return);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|