- Jun 10, 2020
-
-
George Kiagiadakis authored
-
George Kiagiadakis authored
By mistake, WpImplNode was developed by keeping in mind that the proxy returned by pw_core_export() is a PW_TYPE_INTERFACE_Node, but this is not true. It's actually a ClientNode... Unfortunately, making WpImplNode work as if it was a WpNode is not so easy, especially when it comes to handling params, which need to be queried syncrhonously on the underlying spa_node. So, instead of fixing WpImplNode to work as a WpNode, we choose to disconnect them. This way, WpImplNode will not be used as a proxy in the registry and the registry will normally create WpNode proxies instead, making round-trips through the server to change node params.
-
- Jun 04, 2020
-
-
Julian Bouzas authored
-
Julian Bouzas authored
-
Julian Bouzas authored
-
Julian Bouzas authored
-
Julian Bouzas authored
-
Julian Bouzas authored
-
Julian Bouzas authored
-
- Jun 03, 2020
-
-
George Kiagiadakis authored
-
George Kiagiadakis authored
-
George Kiagiadakis authored
This is necessary to finish augmenting nodes that advertise PropInfo & Props in their param info but they don't actually have any properties, so there is no param event emitted (ex. the jack device nodes) Because the sync is synchronous with the calls over the protocol, the callback is ensured to be called after all the param events have been emitted
-
- Jun 02, 2020
-
-
George Kiagiadakis authored
-
George Kiagiadakis authored
otherwise we get stuck waiting for the param event and we get warnings on the debug log
-
George Kiagiadakis authored
-
George Kiagiadakis authored
-
George Kiagiadakis authored
this allows the created nodes to be able to set their "device.id" property correctly
-
George Kiagiadakis authored
-
George Kiagiadakis authored
-
George Kiagiadakis authored
-
George Kiagiadakis authored
they are not useful anymore because we hijack priv->info from the impl subclass, so that it points to the impl info struct, and therefore the base implementations work just fine
-
- Jun 01, 2020
-
-
George Kiagiadakis authored
This reverts commit 917a019b.
-
George Kiagiadakis authored
-
George Kiagiadakis authored
-
George Kiagiadakis authored
-
- May 31, 2020
-
-
George Kiagiadakis authored
so that we can filter proxies by id on object managers
-
George Kiagiadakis authored
-
George Kiagiadakis authored
-
- May 29, 2020
-
-
George Kiagiadakis authored
- make it a GObject so that it can emit its own signals and so that it can be shared between multiple proxies - share the WpProps instance between endpoints, endpoint-streams and their underlying nodes - introduce the concept of the caching mode that redirects _set to _set_param of the proxy that actually has the props; this allows shared WpProps to actually set changes on the correct proxy in a transparent way - change methods to consume the ref of the pod and reflect that also on wp_proxy_set_prop() - refactor the export process on endpoints & endpoint-streams so that they always get all the required features (info, props, bound) and make it async so that we can take time to prepare the underlying node to have FEATURE_PROPS - update the props & endpoint unit tests, bringing back all the checks that the endpoint unit test used to have
-
- May 26, 2020
-
-
Julian Bouzas authored
-
- May 25, 2020
-
-
George Kiagiadakis authored
* Use a direction instead of a string prop id * Emit default-endpoint-changed again * Get rid of the useless virtual methods
-
George Kiagiadakis authored
+ rename FEATURE_CONTROLS to FEATURE_PROPS + add accessor for the standard spa_param_info (info->params) + hide the low-level params API that nobody uses
-
George Kiagiadakis authored
-
George Kiagiadakis authored
-> wp_trace_boxed (WP_TYPE_SPA_POD, pod, "some message");
-
- May 20, 2020
-
-
George Kiagiadakis authored
by using G_TYPE_NONE (== 1), we can pass this in the log handler to point out the fact that we expected something but it's null As a bonus, a null object always gets printed in red because that's the first color in object_colors
-
George Kiagiadakis authored
-
- May 19, 2020
-
-
Julian Bouzas authored
-
Julian Bouzas authored
-
Julian Bouzas authored
-
- May 16, 2020
-
-
George Kiagiadakis authored
-