lishengyin il y a 3 ans
Parent
commit
021721dd12
3 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. BIN
      lib/libmodules.so
  2. 2 1
      modules/inference/src/inference.cpp
  3. 0 1
      modules/userApp/src/user_app.cpp

BIN
lib/libmodules.so


+ 2 - 1
modules/inference/src/inference.cpp

@@ -166,7 +166,7 @@ namespace MIVA{
 
         gst_bin_add_many (GST_BIN (this->pipeline), this->queue1, this->pgie, this->queue2, this->tiler, this->queue3,
             this->nvvidconv, this->queue4, this->nvosd, this->queue5, this->transform, this->sink, NULL);
-
+            
         if (!gst_element_link_many (streammux, this->queue1, this->pgie, this->queue2, this->tiler, this->queue3,
                 this->nvvidconv, this->queue4, this->nvosd, this->queue5, this->transform, this->sink, NULL)) {
             ErrorL << "Elements could not be linked. Exiting.";
@@ -219,6 +219,7 @@ namespace MIVA{
             }
             sourceId++;
         }
+        WarnL << "释放资源成功";
     }
     void Inference::RestartTask()
     {

+ 0 - 1
modules/userApp/src/user_app.cpp

@@ -171,7 +171,6 @@ namespace MIVA
         if(this->play == true){
             this->m_timer2 = std::make_shared<Timer>(5.0f,[&](){
                 this->m_Infer->StopTask();
-                // this->m_Infer->PauseTask();
                 // 推理结束发布InferData事件
                 NoticeCenter::Instance().emitEvent(NOTICE_INFERDATA);
                 return false;