|
@@ -24,8 +24,8 @@
|
|
|
* based on the fastest source's framerate. */
|
|
|
#define MUXER_BATCH_TIMEOUT_USEC 5000
|
|
|
|
|
|
-#define TILED_OUTPUT_WIDTH 1920
|
|
|
-#define TILED_OUTPUT_HEIGHT 1080
|
|
|
+#define TILED_OUTPUT_WIDTH 1280
|
|
|
+#define TILED_OUTPUT_HEIGHT 720
|
|
|
|
|
|
/* NVIDIA Decoder source pad memory feature. This feature signifies that source
|
|
|
* pads having this capability will push GstBuffers containing cuda buffers. */
|
|
@@ -46,7 +46,7 @@ GstElement *g_streammux = NULL;
|
|
|
|
|
|
namespace MIVA{
|
|
|
std::shared_ptr<Inference> infer = NULL;
|
|
|
- ThreadPool pool(6,ThreadPool::PRIORITY_HIGHEST, false);
|
|
|
+ ThreadPool pool(10,ThreadPool::PRIORITY_HIGHEST, false);
|
|
|
std::shared_ptr<Inference> Inference::CreateNew()
|
|
|
{
|
|
|
if(infer == NULL) infer = std::make_shared<Inference>();
|
|
@@ -167,7 +167,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.";
|
|
@@ -206,7 +206,12 @@ namespace MIVA{
|
|
|
void Inference::PauseTask()
|
|
|
{
|
|
|
InfoL << "Now Pause";
|
|
|
- gst_element_set_state(this->pipeline, GST_STATE_PAUSED);
|
|
|
+ std::vector<DataSource>::iterator iter;
|
|
|
+ for(iter = this->m_DataList.begin(); iter != this->m_DataList.end(); iter++){
|
|
|
+ if(iter->Play){
|
|
|
+ gst_element_set_state(iter->source_bin, GST_STATE_PAUSED);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
void Inference::StopTask()
|
|
@@ -217,13 +222,14 @@ namespace MIVA{
|
|
|
for (iter = this->m_DataList.begin(); iter != this->m_DataList.end(); iter++){
|
|
|
if(iter->Play){
|
|
|
this->stop_release_source(sourceId);
|
|
|
- sourceId++;
|
|
|
iter->Play = false;
|
|
|
}
|
|
|
+ sourceId++;
|
|
|
}
|
|
|
+ NoticeCenter::Instance().emitEvent(NOTICE_RELEASE);
|
|
|
+ WarnL << "释放资源成功";
|
|
|
});
|
|
|
pool.start();
|
|
|
- WarnL << "释放资源成功";
|
|
|
}
|
|
|
void Inference::RestartTask()
|
|
|
{
|
|
@@ -377,54 +383,6 @@ namespace MIVA{
|
|
|
state_return = gst_element_set_state (m_DataList[source_id].source_bin, GST_STATE_NULL);
|
|
|
switch (state_return) {
|
|
|
case GST_STATE_CHANGE_SUCCESS:
|
|
|
-
|
|
|
- InfoL << "STATE CHANGE SUCCESS";
|
|
|
- g_snprintf (pad_name, 15, "sink_%u", source_id);
|
|
|
- sinkpad = gst_element_get_static_pad (streammux, pad_name);
|
|
|
- gst_pad_send_event (sinkpad, gst_event_new_flush_stop (FALSE));
|
|
|
- gst_element_release_request_pad (streammux, sinkpad);
|
|
|
- InfoL << "STATE CHANGE SUCCESS:" << source_id;
|
|
|
- gst_object_unref (sinkpad);
|
|
|
- gst_bin_remove (GST_BIN (this->pipeline), m_DataList[source_id].source_bin);
|
|
|
- break;
|
|
|
- case GST_STATE_CHANGE_FAILURE:
|
|
|
- ErrorL << "STATE CHANGE FAILURE";
|
|
|
- break;
|
|
|
- case GST_STATE_CHANGE_ASYNC:
|
|
|
- InfoL << "STATE CHANGE ASYNC";
|
|
|
- state_return =
|
|
|
- gst_element_get_state (m_DataList[source_id].source_bin, NULL, NULL,
|
|
|
- GST_CLOCK_TIME_NONE);
|
|
|
- g_snprintf (pad_name, 15, "sink_%u", source_id);
|
|
|
- sinkpad = gst_element_get_static_pad (streammux, pad_name);
|
|
|
- gst_pad_send_event (sinkpad, gst_event_new_flush_stop (FALSE));
|
|
|
- gst_element_release_request_pad (streammux, sinkpad);
|
|
|
- g_print ("STATE CHANGE ASYNC %p\n\n", sinkpad);
|
|
|
- gst_object_unref (sinkpad);
|
|
|
- gst_bin_remove (GST_BIN (this->pipeline), m_DataList[source_id].source_bin);
|
|
|
- break;
|
|
|
- case GST_STATE_CHANGE_NO_PREROLL:
|
|
|
- InfoL << "STATE CHANGE NO PREROLL";
|
|
|
- break;
|
|
|
- default:
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- void Inference::stop_release_source1()
|
|
|
- {
|
|
|
- static int source_id = 0;
|
|
|
- if(source_id == m_DataList.size()){
|
|
|
- source_id = 0;
|
|
|
- }
|
|
|
-
|
|
|
- GstStateChangeReturn state_return;
|
|
|
- gchar pad_name[16];
|
|
|
- GstPad *sinkpad = NULL;
|
|
|
-
|
|
|
- state_return = gst_element_set_state (m_DataList[source_id].source_bin, GST_STATE_NULL);
|
|
|
- switch (state_return) {
|
|
|
- case GST_STATE_CHANGE_SUCCESS:
|
|
|
InfoL << "STATE CHANGE SUCCESS";
|
|
|
g_snprintf (pad_name, 15, "sink_%u", source_id);
|
|
|
sinkpad = gst_element_get_static_pad (streammux, pad_name);
|
|
@@ -433,7 +391,6 @@ namespace MIVA{
|
|
|
InfoL << "STATE CHANGE SUCCESS:" << source_id;
|
|
|
gst_object_unref (sinkpad);
|
|
|
gst_bin_remove (GST_BIN (this->pipeline), m_DataList[source_id].source_bin);
|
|
|
- m_DataList[source_id].source_bin = NULL;
|
|
|
break;
|
|
|
case GST_STATE_CHANGE_FAILURE:
|
|
|
ErrorL << "STATE CHANGE FAILURE";
|
|
@@ -457,9 +414,7 @@ namespace MIVA{
|
|
|
default:
|
|
|
break;
|
|
|
}
|
|
|
- source_id++;
|
|
|
}
|
|
|
-
|
|
|
void Inference::cb_newpad (GstElement * decodebin, GstPad * pad, gpointer data)
|
|
|
{
|
|
|
GstCaps *caps = gst_pad_query_caps (pad, NULL);
|