PC: RTX 2070 Super
Deepstream: 6.4
Driver Version: 535.154.05
Docker image: deepstream:6.4-gc-triton-devel
I am working on the sample app deepstream-test3 in C++ for deepstream 6.4. I can compile and use the app correctly.
i am testing rtsp-reconnect-interval functionality in nvurisrcbin, thus I make the following changes.
export NVDS_TEST3_PERF_MODE=1
if (PERF_MODE) {
uri_decode_bin = gst_element_factory_make ("nvurisrcbin", "uri-decode-bin");
g_object_set (G_OBJECT (uri_decode_bin), "file-loop", TRUE, NULL);
g_object_set (G_OBJECT (uri_decode_bin), "cudadec-memtype", 0, NULL);
g_object_set(G_OBJECT(uri_decode_bin), "rtsp-reconnect-interval", 1, NULL);
}
For simplicity I remove the pgie element linking and compile and run the app on 4 simulated rtsp sources as below
./deepstream-test3-app rtsp://127.0.0.1:8550/test rtsp://127.0.0.1:8551/test rtsp://127.0.0.1:8552/test rtsp://127.0.0.1:8553/test
After about 5 seconds of running the pipeline I stop the simulated rtsp source (rtsp://127.0.0.1:8551/test) for 3 seconds and start it back up. I expect the deepstream app to reconnect within 1 second as per the timeout, however it takes almost 30 seconds, and I do not see any log messages trying to reconnect every second as expected.
**PERF : FPS_0 (20.00) FPS_1 (20.00) FPS_2 (20.00) FPS_3 (20.00)
**PERF : FPS_0 (20.00) FPS_1 (20.00) FPS_2 (20.00) FPS_3 (20.00)
**PERF : FPS_0 (20.00) FPS_1 (20.00) FPS_2 (20.00) FPS_3 (20.00)
**PERF : FPS_0 (20.00) FPS_1 (20.00) FPS_2 (20.00) FPS_3 (20.00)
**PERF : FPS_0 (20.00) FPS_1 (20.00) FPS_2 (20.00) FPS_3 (20.00)
WARNING from element src: Could not read from resource.
Warning: Could not read from resource.
WARNING from element src: Could not open resource for reading and writing.
Warning: Could not open resource for reading and writing.
WARNING from element src: Internal data stream error.
Warning: Internal data stream error.
Resetting source rtsp://127.0.0.1:8551/test
WARNING from element uri-decode-bin: No data from source rtsp://127.0.0.1:8551/test since last 1 sec. Trying reconnection
Warning: No data from source rtsp://127.0.0.1:8551/test since last 1 sec. Trying reconnection
WARNING from element src: Could not open resource for reading and writing.
Warning: Could not open resource for reading and writing.
**PERF : FPS_0 (19.96) FPS_1 (17.96) FPS_2 (19.96) FPS_3 (19.96)
**PERF : FPS_0 (19.97) FPS_1 (15.40) FPS_2 (19.97) FPS_3 (19.97)
**PERF : FPS_0 (19.97) FPS_1 (13.47) FPS_2 (19.97) FPS_3 (19.97)
**PERF : FPS_0 (19.97) FPS_1 (11.98) FPS_2 (19.97) FPS_3 (19.97)
**PERF : FPS_0 (19.98) FPS_1 (10.78) FPS_2 (19.98) FPS_3 (19.98)
**PERF : FPS_0 (19.98) FPS_1 (9.80) FPS_2 (19.98) FPS_3 (19.98)
**PERF : FPS_0 (19.98) FPS_1 (8.98) FPS_2 (19.98) FPS_3 (19.98)
**PERF : FPS_0 (19.98) FPS_1 (8.29) FPS_2 (19.98) FPS_3 (19.98)
**PERF : FPS_0 (19.98) FPS_1 (7.70) FPS_2 (19.98) FPS_3 (19.98)
**PERF : FPS_0 (19.98) FPS_1 (7.19) FPS_2 (19.98) FPS_3 (19.98)
**PERF : FPS_0 (19.98) FPS_1 (6.74) FPS_2 (19.98) FPS_3 (19.98)
**PERF : FPS_0 (19.99) FPS_1 (6.34) FPS_2 (19.99) FPS_3 (19.99)
Resetting source rtsp://127.0.0.1:8551/test
Decodebin child added: h264parse4
Decodebin child added: capsfilter4
Decodebin child added: nvv4l2decoder4
**PERF : FPS_0 (20.00) FPS_1 (6.40) FPS_2 (20.00) FPS_3 (20.00)
**PERF : FPS_0 (20.00) FPS_1 (7.11) FPS_2 (20.00) FPS_3 (20.00)
**PERF : FPS_0 (20.00) FPS_1 (7.76) FPS_2 (20.00) FPS_3 (20.00)
**PERF : FPS_0 (20.00) FPS_1 (8.34) FPS_2 (20.00) FPS_3 (20.00)
To add more context, if the source is down at first and then the application is started up, the deepstream app, will try reconnection (Resetting source) very frequently (almost every second), as expected.