Commit 5bea1844 authored by Laurent Aimar's avatar Laurent Aimar

Allowed vout display events to be issued from anywhere.

For lack of vout display currently doing it (obviously ;), it is
untested.
parent 03a5ec2b
...@@ -207,8 +207,10 @@ struct vout_display_owner_t { ...@@ -207,8 +207,10 @@ struct vout_display_owner_t {
* be overwritten nor used directly (use the vout_display_SendEvent* * be overwritten nor used directly (use the vout_display_SendEvent*
* wrapper. * wrapper.
* *
* You can send it at any time i.e. from any vout_display_t functions * You can send it at any time i.e. from any vout_display_t functions or
* (TODO add support from a private thread). * from another thread.
* Becarefull, it does not ensure correct serialization if it is used
* from multiple threads.
*/ */
void (*event)(vout_display_t *, int, va_list); void (*event)(vout_display_t *, int, va_list);
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment