Emmanuel Pacaud
Emmanuel Pacaud
> I understand the client configuration is in ../client.conf My bad, simple-client is built using ClientBuilder. The problem is on fedora, `locahost` resolves to `::1` and not `127.0.0.1`. Changing `server.conf`...
@PauloFavero Did you try `arv-camera-test` ?
It is probably an issue with your pipeline. The simplest pipeline that is supposed to work is: ``` aravissrc ! videoconvert ! xvimagesink ``` You may want to use the...
Hi, Thanks for the analysis. You are probably hitting the default 2s timeout aravissrc is using trying to pull a buffer when operating without a fixed frame rate. https://github.com/AravisProject/aravis/blob/1300e6bec759c03348b42d6ff7515737de73e820/gst/gstaravis.c#L45 https://github.com/AravisProject/aravis/blob/1300e6bec759c03348b42d6ff7515737de73e820/gst/gstaravis.c#L261-L276...
The easiest workaround is to increase the timeout value and recompile Aravis. But a proper solution needs a better understanding of GStreamer. Any help welcome.
@turowicz Adding yet another property is not the right solution. @TIS-Edgar gave some thoughts on how to solve this issue properly, but nobody stepped up with a fix yet.
> @EmmanuelP Since I received no comments on the feature branch from @PauloFavero, should I simply open a merge request so that this can keep moving? Yes please.
Should be fixed by #686. Please reopen if the issue persists.
It looks like the issue is not completely fixed, as reported here: #704 We still use a 2s timeout when waiting for a buffer. https://github.com/AravisProject/aravis/blob/43b3ea413b1c726d12c4541b22f096bd882f00ed/gst/gstaravis.c#L311 We can not really increase...
Hi, There is multiple places in Aravis where connections are handled. I guess the listening for discovery packet answers is one of the problematic case, but may be not the...