summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2021-11-29 13:12:02 +0100
committersfan5 <sfan5@live.de>2021-12-15 12:29:10 +0100
commit632059816adde518c67f6606e3cfdef5bec18b52 (patch)
treeb5d265830778cb7cea19db50a06c8afc4224c175 /DOCS
parent72915e8b76b2e5da9ddc90e892a544b6de512f39 (diff)
downloadmpv-632059816adde518c67f6606e3cfdef5bec18b52.tar.bz2
mpv-632059816adde518c67f6606e3cfdef5bec18b52.tar.xz
libmpv: remove opengl_cb API and other deprecated symbols
Not all deprecated symbols were removed. Only three events were removed for now since these are not used internally. This bumps the library version to 2.0.
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/client-api-changes.rst8
-rw-r--r--DOCS/man/input.rst2
2 files changed, 7 insertions, 3 deletions
diff --git a/DOCS/client-api-changes.rst b/DOCS/client-api-changes.rst
index 308ce44b4b..203ada5906 100644
--- a/DOCS/client-api-changes.rst
+++ b/DOCS/client-api-changes.rst
@@ -32,6 +32,12 @@ API changes
::
+ --- mpv 0.35.0 ---
+ 2.0 - remove headers/functions of the obsolete opengl_cb API
+ - remove mpv_opengl_init_params.extra_exts field
+ - remove deprecated mpv_detach_destroy. Use mpv_destroy instead.
+ - remove obsolete mpv_suspend and mpv_resume
+ - remove deprecated SCRIPT_INPUT_DISPATCH, PAUSE and UNPAUSE events
--- mpv 0.33.0 ---
1.109 - add MPV_RENDER_API_TYPE_SW and related (software rendering API)
- inactivate the opengl_cb API (always fails to initialize now)
@@ -54,7 +60,6 @@ API changes
It is a good idea to write better wrappers for your use, though.
--- mpv 0.31.0 ---
1.107 - Deprecate MPV_EVENT_TICK
-
--- mpv 0.30.0 ---
1.106 - Add cancel_fn to mpv_stream_cb_info
1.105 - Fix deadlock problems with MPV_RENDER_PARAM_ADVANCED_CONTROL and if
@@ -72,7 +77,6 @@ API changes
- add mpv_abort_async_command()
1.102 - rename struct mpv_opengl_drm_osd_size to mpv_opengl_drm_draw_surface_size
- rename MPV_RENDER_PARAM_DRM_OSD_SIZE to MPV_RENDER_PARAM_DRM_DRAW_SURFACE_SIZE
-
--- mpv 0.29.0 ---
1.101 - add MPV_RENDER_PARAM_ADVANCED_CONTROL and related API
- add MPV_RENDER_PARAM_NEXT_FRAME_INFO and related symbols
diff --git a/DOCS/man/input.rst b/DOCS/man/input.rst
index 5a733a5da1..c7af5842bd 100644
--- a/DOCS/man/input.rst
+++ b/DOCS/man/input.rst
@@ -1601,7 +1601,7 @@ This list uses the event name field value, and the C API symbol in brackets:
The new value of the property.
The following events also happen, but are deprecated: ``tracks-changed``,
-``track-switched``, ``pause``, ``unpause``, ``metadata-update``, ``idle``,
+``track-switched``, ``metadata-update``, ``idle``,
``tick``, ``chapter-change``. Use ``mpv_observe_property()``
(Lua: ``mp.observe_property()``) instead.