|
@@ -4,7 +4,7 @@
|
|
|
* @Autor: lishengyin
|
|
|
* @Date: 2021-10-13 09:35:37
|
|
|
* @LastEditors: lishengyin
|
|
|
- * @LastEditTime: 2021-10-15 15:42:42
|
|
|
+ * @LastEditTime: 2021-10-18 15:00:56
|
|
|
*/
|
|
|
#include "inference.h"
|
|
|
|
|
@@ -72,7 +72,14 @@ namespace MIVA{
|
|
|
}
|
|
|
Inference::~Inference()
|
|
|
{
|
|
|
- Destory();
|
|
|
+ DebugL << "Returned, stopping playback";
|
|
|
+ gst_element_set_state(this->pipeline, GST_STATE_NULL);
|
|
|
+ g_main_loop_quit (this->loop);
|
|
|
+ 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);
|
|
|
}
|
|
|
/**
|
|
|
* @description: 推理模块初始化
|
|
@@ -83,6 +90,7 @@ namespace MIVA{
|
|
|
int32_t Inference::Init(vector<DataSource> DataList)
|
|
|
{
|
|
|
// init
|
|
|
+ this->loop = g_main_loop_new (NULL, FALSE);
|
|
|
// 创建管道
|
|
|
this->pipeline = gst_pipeline_new("dstest3-pipeline");
|
|
|
|
|
@@ -179,7 +187,7 @@ namespace MIVA{
|
|
|
|
|
|
|
|
|
this->bus = gst_pipeline_get_bus (GST_PIPELINE (this->pipeline));
|
|
|
- this->bus_watch_id = gst_bus_add_watch (this->bus, bus_call, NULL);
|
|
|
+ this->bus_watch_id = gst_bus_add_watch (this->bus, bus_call, this->loop);
|
|
|
gst_object_unref (this->bus);
|
|
|
|
|
|
gst_bin_add_many (GST_BIN (this->pipeline), this->queue1, this->pgie, this->queue2, this->tiler, this->queue3,
|
|
@@ -228,6 +236,7 @@ namespace MIVA{
|
|
|
ret++;
|
|
|
pool.async([&](){
|
|
|
gst_element_set_state(this->pipeline, GST_STATE_PLAYING);
|
|
|
+ g_main_loop_run(this->loop);
|
|
|
});
|
|
|
pool.start();
|
|
|
}
|
|
@@ -293,12 +302,6 @@ namespace MIVA{
|
|
|
*/
|
|
|
void Inference::Destory()
|
|
|
{
|
|
|
- DebugL << "Returned, stopping playback";
|
|
|
- gst_element_set_state(this->pipeline, GST_STATE_NULL);
|
|
|
- DebugL << "Deleting pipeline";
|
|
|
- gst_object_unref(GST_OBJECT(this->pipeline));
|
|
|
- g_source_remove(this->bus_watch_id);
|
|
|
- g_mutex_clear (&eos_lock);
|
|
|
infer = NULL;
|
|
|
}
|
|
|
/**
|