|
@@ -22,10 +22,10 @@
|
|
|
|
|
|
/* Muxer batch formation timeout, for e.g. 40 millisec. Should ideally be set
|
|
|
* based on the fastest source's framerate. */
|
|
|
-#define MUXER_BATCH_TIMEOUT_USEC 40000
|
|
|
+#define MUXER_BATCH_TIMEOUT_USEC 500
|
|
|
|
|
|
-#define TILED_OUTPUT_WIDTH 1280
|
|
|
-#define TILED_OUTPUT_HEIGHT 720
|
|
|
+#define TILED_OUTPUT_WIDTH 1920
|
|
|
+#define TILED_OUTPUT_HEIGHT 1080
|
|
|
|
|
|
/* NVIDIA Decoder source pad memory feature. This feature signifies that source
|
|
|
* pads having this capability will push GstBuffers containing cuda buffers. */
|
|
@@ -175,8 +175,18 @@ 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);
|
|
|
- /* we link the elements together
|
|
|
- * nvstreammux -> nvinfer -> nvtiler -> nvvidconv -> nvosd -> video-renderer */
|
|
|
+
|
|
|
+ // 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,
|
|
|
this->nvvidconv, this->queue4, this->nvosd, this->queue5, this->transform, this->sink, NULL)) {
|
|
|
ErrorL << "Elements could not be linked. Exiting.";
|
|
@@ -296,7 +306,7 @@ namespace MIVA{
|
|
|
gst_message_parse_warning (msg, &error, &debug);
|
|
|
WarnL << "WARNING from element " << GST_OBJECT_NAME (msg->src) << ": " << error->message;
|
|
|
g_free (debug);
|
|
|
- ErrorL << "Warning: %s" << error->message;
|
|
|
+ ErrorL << "Warning: " << error->message;
|
|
|
g_error_free (error);
|
|
|
break;
|
|
|
}
|