summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-09-15 13:13:23 +0200
committerwm4 <wm4@nowhere>2016-09-15 13:13:23 +0200
commit1b5b23b94849b18bedd458fd83741fa07d840c7b (patch)
tree0c4f82a780d4b22d57451849e6b25e97e693d474 /DOCS
parentf1436658647aceb7ea58e595439fa6dd5c2cdb97 (diff)
downloadmpv-1b5b23b94849b18bedd458fd83741fa07d840c7b.tar.bz2
mpv-1b5b23b94849b18bedd458fd83741fa07d840c7b.tar.xz
client API: remove SIGPIPE overriding code
This workaround prevented that libmpv users could accidentally crash when the SIGPIPE signal was triggered by FFmpeg's OpenSSL/GnuTLS usage. But it also modifies the global signal handler state, so remove it now that this workaround is not required anymore.
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/client-api-changes.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/DOCS/client-api-changes.rst b/DOCS/client-api-changes.rst
index d7fbfaadf6..5c7f8d7961 100644
--- a/DOCS/client-api-changes.rst
+++ b/DOCS/client-api-changes.rst
@@ -37,6 +37,8 @@ API changes
instead of "no-video=" you should set "video=no".
- be much more permissive what API calls are allowed before
mpv_initialize().
+ - do not override the SIGPIPE signal handler anymore. This was done as
+ workaround for the FFmpeg TLS code, which has been fixed long ago.
--- mpv 0.19.0 ---
1.22 - add stream_cb API for custom protocols
--- mpv 0.18.1 ---