summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-02-21 12:39:22 +0100
committerKevin Mitchell <kevmitch@gmail.com>2018-02-28 00:55:06 -0800
commit70b74d32cdec067dcc2d7fcb52f441cbb40f4407 (patch)
tree3e4010a333466120f403f0b10a58a7024d0db9f0
parentb6c7d899ca9250147b9eef2a6b9bf8a0596a576d (diff)
downloadmpv-70b74d32cdec067dcc2d7fcb52f441cbb40f4407.tar.bz2
mpv-70b74d32cdec067dcc2d7fcb52f441cbb40f4407.tar.xz
client API: clarify license, fix some typos
-rw-r--r--libmpv/client.h3
-rw-r--r--libmpv/opengl_cb.h4
2 files changed, 4 insertions, 3 deletions
diff --git a/libmpv/client.h b/libmpv/client.h
index f47c670558..424bf0613d 100644
--- a/libmpv/client.h
+++ b/libmpv/client.h
@@ -16,7 +16,8 @@
/*
* Note: the client API is licensed under ISC (see above) to enable
* other wrappers outside of mpv. But keep in mind that the
- * mpv core is still mostly GPLv2+.
+ * mpv core is by default still GPLv2+ - unless built with
+ * --enable-lgpl, which makes it LGPLv2+.
*/
#ifndef MPV_CLIENT_API_H_
diff --git a/libmpv/opengl_cb.h b/libmpv/opengl_cb.h
index 4025d745fa..384372b617 100644
--- a/libmpv/opengl_cb.h
+++ b/libmpv/opengl_cb.h
@@ -59,7 +59,7 @@ extern "C" {
* for OpenGL 2.1 and OpenGL ES 2.0.
*
* Note that some hardware decoding interop API (as set with the "hwdec" option)
- * may actually access
+ * may actually access some sort of host API, such as EGL.
*
* OpenGL state
* ------------
@@ -118,7 +118,7 @@ extern "C" {
* While "normal" mpv loads the OpenGL hardware decoding interop on demand,
* this can't be done with opengl_cb for internal technical reasons. Instead,
* it loads them by default, even if hardware decoding is not going to be used.
- * In older mpv relases, this had to be done by setting the
+ * In older mpv releases, this had to be done by setting the
* "opengl-hwdec-interop" or "hwdec-preload" options before calling
* mpv_opengl_cb_init_gl(). You can still use the newer "gpu-hwdec-interop"
* option to prevent loading of interop, or to load only a specific interop.