|
@@ -75,7 +75,7 @@ namespace MIVA{
|
|
|
gchar pad_name[16] = { };
|
|
|
|
|
|
GstElement *source_bin = create_source_bin ((*iter).Id, (gchar*)((*iter).uri).c_str());
|
|
|
-
|
|
|
+
|
|
|
if (!source_bin) {
|
|
|
ErrorL << "Failed to create source bin. Exiting.";
|
|
|
return ERR;
|
|
@@ -87,7 +87,6 @@ namespace MIVA{
|
|
|
ErrorL << "Streammux request sink pad failed. Exiting.";
|
|
|
return ERR;
|
|
|
}
|
|
|
-
|
|
|
srcpad = gst_element_get_static_pad(source_bin, "src");
|
|
|
if(!srcpad){
|
|
|
ErrorL << "Failed to get src pad of source bin. Exiting.";
|
|
@@ -112,6 +111,8 @@ namespace MIVA{
|
|
|
this->queue4 = gst_element_factory_make ("queue", "queue4");
|
|
|
this->queue5 = gst_element_factory_make ("queue", "queue5");
|
|
|
|
|
|
+ // g_object_set (G_OBJECT(this->queue1), "max-size-buffers", 20, NULL);
|
|
|
+
|
|
|
/* Use nvtiler to composite the batched frames into a 2D tiled array based
|
|
|
* on the source of the frames. */
|
|
|
this->tiler = gst_element_factory_make ("nvmultistreamtiler", "nvtiler");
|
|
@@ -176,22 +177,22 @@ 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);
|
|
|
|
|
|
- // gst_bin_add_many (GST_BIN (this->pipeline), this->queue2, this->tiler, this->queue3,
|
|
|
- // this->nvvidconv, this->queue4, this->nvosd, this->queue5, this->transform, this->sink, NULL);
|
|
|
+ gst_bin_add_many (GST_BIN (this->pipeline), this->queue2, this->tiler, this->queue3,
|
|
|
+ this->nvvidconv, this->queue4, this->nvosd, this->queue5, this->transform, this->sink, NULL);
|
|
|
|
|
|
// /* we link the elements together
|
|
|
// * nvstreammux -> nvinfer -> nvtiler -> nvvidconv -> nvosd -> video-renderer */
|
|
|
|
|
|
- // if (!gst_element_link_many (this->streammux, 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.";
|
|
|
- // return -1;
|
|
|
- // }
|
|
|
- if (!gst_element_link_many (this->streammux, this->queue1, this->pgie, this->queue2, this->tiler, this->queue3,
|
|
|
+ if (!gst_element_link_many (this->streammux, 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.";
|
|
|
return -1;
|
|
|
}
|
|
|
+ // if (!gst_element_link_many (this->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.";
|
|
|
+ // return -1;
|
|
|
+ // }
|
|
|
|
|
|
this->tiler_src_pad = gst_element_get_static_pad(this->pgie, "src");
|
|
|
if (!this->tiler_src_pad)
|