summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Copyright2
-rw-r--r--video/mp_image.c9
-rw-r--r--video/mp_image.h2
3 files changed, 6 insertions, 7 deletions
diff --git a/Copyright b/Copyright
index 7d6a9adec4..578161a8b0 100644
--- a/Copyright
+++ b/Copyright
@@ -299,7 +299,7 @@ LGPL relicensing status:
video/image_writer.* unknown
video/img_format.* hard
video/img_fourcc.h hard
- video/mp_image.* hard (if even possible)
+ video/mp_image.* almost LGPL
video/mp_image_pool.* LGPL
video/out/aspect.* hard
video/out/bitmap_packer.* LGPL
diff --git a/video/mp_image.c b/video/mp_image.c
index 76a117d85a..bc706b8856 100644
--- a/video/mp_image.c
+++ b/video/mp_image.c
@@ -13,13 +13,10 @@
*
* You should have received a copy of the GNU General Public License along
* with mpv. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Almost LGPL.
*/
-#include "config.h"
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
#include <limits.h>
#include <pthread.h>
#include <assert.h>
@@ -33,7 +30,7 @@
#include "mpv_talloc.h"
-#include "img_format.h"
+#include "common/common.h"
#include "mp_image.h"
#include "sws_utils.h"
#include "fmt-conversion.h"
diff --git a/video/mp_image.h b/video/mp_image.h
index e3ffd55adc..56ce2257f4 100644
--- a/video/mp_image.h
+++ b/video/mp_image.h
@@ -13,6 +13,8 @@
*
* You should have received a copy of the GNU General Public License along
* with mpv. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Almost LGPL.
*/
#ifndef MPLAYER_MP_IMAGE_H