mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-06 13:30:01 -05:00
Various improvements
context: fix memory free subscribe: implement dummy methods introspect: implement more stream: keep track of dequeued buffers ourselves because we need to be able to cancel and keep track of writable size.
This commit is contained in:
parent
68643fd25a
commit
fe932db2c6
10 changed files with 804 additions and 57 deletions
|
|
@ -85,8 +85,13 @@ int pa_proplist_setp(pa_proplist *p, const char *pair)
|
|||
|
||||
int pa_proplist_setf(pa_proplist *p, const char *key, const char *format, ...)
|
||||
{
|
||||
pw_log_warn("Not Implemented");
|
||||
return -1;
|
||||
va_list varargs;
|
||||
|
||||
va_start(varargs, format);
|
||||
pw_properties_setva(p->props, key, format, varargs);
|
||||
va_end(varargs);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int pa_proplist_set(pa_proplist *p, const char *key, const void *data, size_t nbytes)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue