node: remove process signals

Remove the process and finish signals, we are not supposed to
call these from rt threads. Instead use the link trigger to signal
the end of the graph.
This commit is contained in:
Wim Taymans 2018-09-24 12:48:37 +02:00
parent 1b933e5b32
commit 881ee6caea
3 changed files with 35 additions and 36 deletions

View file

@ -87,13 +87,6 @@ struct pw_node_events {
/** the driver of the node changed */
void (*driver_changed) (void *data, struct pw_node *driver);
/** the node wants to process the graph */
void (*process) (void *data);
/** the node has a buffer to reuse */
void (*reuse_buffer) (void *data, uint32_t port_id, uint32_t buffer_id);
/** the node driver finished processing */
void (*finish) (void *data);
};
/** Media type of the node, Audio, Video, Midi */