summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-01-19 19:54:20 +0100
committerwm4 <wm4@nowhere>2015-01-19 21:26:42 +0100
commit64f72687ce4227fc5e6f3636c8fd0078a8e098a2 (patch)
treedf27ca9566e18837a49d5320e50bb7beb73e29d3 /DOCS
parentffaf4af230b92eb94fdf31784ca323cc931822e3 (diff)
downloadmpv-64f72687ce4227fc5e6f3636c8fd0078a8e098a2.tar.bz2
mpv-64f72687ce4227fc5e6f3636c8fd0078a8e098a2.tar.xz
client API: notify API user on event queue overflow
Before this, we merely printed a message to the terminal. Now the API user can determine this properly. This might be important for API users which somehow maintain complex state, which all has to be invalidated if (state-changing) events are missing due to an overflow. This also forces the client API user to empty the event queue, which is good, because otherwise the event queue would reach the "filled up" state immediately again due to further asynchronous events being added to the queue. Also add some minor improvements to mpv_wait_event() documentation, and some other minor cosmetic changes.
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/client-api-changes.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/DOCS/client-api-changes.rst b/DOCS/client-api-changes.rst
index 10bcb942ba..8fa325a870 100644
--- a/DOCS/client-api-changes.rst
+++ b/DOCS/client-api-changes.rst
@@ -25,6 +25,7 @@ API changes
::
+ 1.13 - add MPV_EVENT_QUEUE_OVERFLOW
1.12 - add class Handle to qthelper.hpp
- improve opengl_cb.h API uninitialization behavior, and fix the qml
example