summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--audio/audio_buffer.c14
-rw-r--r--audio/audio_buffer.h14
-rw-r--r--audio/chmap.c14
-rw-r--r--audio/chmap.h14
-rw-r--r--audio/chmap_sel.c14
-rw-r--r--audio/chmap_sel.h14
-rw-r--r--audio/filter/af_lavfi.c14
-rw-r--r--audio/filter/af_rubberband.c14
-rw-r--r--audio/out/ao_sdl.c14
-rw-r--r--audio/out/ao_wasapi.c14
-rw-r--r--audio/out/ao_wasapi.h14
-rw-r--r--audio/out/ao_wasapi_changenotify.c14
-rw-r--r--audio/out/ao_wasapi_utils.c14
-rw-r--r--audio/out/pull.c14
-rw-r--r--audio/out/push.c14
-rw-r--r--common/av_common.c14
-rw-r--r--common/av_common.h14
-rw-r--r--common/codecs.c14
-rw-r--r--common/codecs.h14
-rw-r--r--common/common.c14
-rw-r--r--common/playlist.c14
-rw-r--r--common/playlist.h14
-rw-r--r--common/tags.c14
-rw-r--r--common/version.c14
-rw-r--r--demux/codec_tags.c14
-rw-r--r--demux/codec_tags.h14
-rw-r--r--demux/cue.c14
-rw-r--r--demux/cue.h14
-rw-r--r--demux/demux_cue.c14
-rw-r--r--demux/demux_disc.c14
-rw-r--r--demux/demux_edl.c14
-rw-r--r--demux/demux_mkv_timeline.c14
-rw-r--r--demux/demux_playlist.c32
-rw-r--r--demux/demux_rar.c14
-rw-r--r--input/event.c14
-rw-r--r--input/event.h14
-rw-r--r--misc/charset_conv.c14
-rw-r--r--misc/dispatch.c14
-rw-r--r--misc/json.c14
-rw-r--r--misc/json.h14
-rw-r--r--misc/ring.c14
-rw-r--r--misc/ring.h14
-rw-r--r--osdep/atomics.h14
-rw-r--r--osdep/io.c14
-rw-r--r--osdep/io.h14
-rw-r--r--osdep/path-macosx.m14
-rw-r--r--osdep/path-unix.c14
-rw-r--r--osdep/path-win.c14
-rw-r--r--osdep/subprocess-posix.c14
-rw-r--r--osdep/subprocess-win.c14
-rw-r--r--osdep/subprocess.c14
-rw-r--r--osdep/subprocess.h14
-rw-r--r--osdep/threads.c15
-rw-r--r--osdep/timer.c14
-rw-r--r--player/core.h2
-rw-r--r--player/lua.c14
-rw-r--r--player/misc.c22
-rw-r--r--player/playloop.c8
-rw-r--r--player/screenshot.c14
-rw-r--r--player/screenshot.h14
-rw-r--r--player/scripting.c14
-rw-r--r--stream/cache_file.c15
-rw-r--r--stream/stream_avdevice.c14
-rw-r--r--stream/stream_memory.c14
-rw-r--r--sub/dec_sub.c14
-rw-r--r--sub/draw_bmp.c14
-rw-r--r--sub/img_convert.c14
-rw-r--r--sub/lavc_conv.c14
-rw-r--r--sub/osd_libass.c14
-rw-r--r--video/decode/rpi.c14
-rw-r--r--video/decode/vdpau.c14
-rw-r--r--video/filter/vf_dlopen.c14
-rw-r--r--video/filter/vf_lavfi.c14
-rw-r--r--video/filter/vf_vdpaurb.c14
-rw-r--r--video/mp_image_pool.c14
-rw-r--r--video/out/bitmap_packer.c14
-rw-r--r--video/out/drm_common.h14
-rw-r--r--video/out/opengl/context_wayland.c14
-rw-r--r--video/out/vo_rpi.c14
-rw-r--r--video/out/vo_sdl.c14
-rw-r--r--video/out/vo_wayland.c14
-rw-r--r--video/out/wayland/buffer.c14
-rw-r--r--video/out/wayland/buffer.h14
-rw-r--r--video/out/wayland/memfile.c14
-rw-r--r--video/out/wayland/memfile.h14
-rw-r--r--video/out/wayland_common.c14
-rw-r--r--video/out/wayland_common.h14
-rw-r--r--video/sws_utils.c14
88 files changed, 613 insertions, 629 deletions
diff --git a/audio/audio_buffer.c b/audio/audio_buffer.c
index c0f1341afe..a443a2185a 100644
--- a/audio/audio_buffer.c
+++ b/audio/audio_buffer.c
@@ -1,18 +1,18 @@
/*
* This file is part of mpv.
*
- * mpv is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * mpv is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
*
* mpv is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License along
- * with mpv. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stddef.h>
diff --git a/audio/audio_buffer.h b/audio/audio_buffer.h
index f517542ef5..212d187572 100644
--- a/audio/audio_buffer.h
+++ b/audio/audio_buffer.h
@@ -1,18 +1,18 @@
/*
* This file is part of mpv.
*
- * mpv is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * mpv is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
*
* mpv is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License along
- * with mpv. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MP_AUDIO_BUFFER_H
diff --git a/audio/chmap.c b/audio/chmap.c
index e0f485c4dc..1d4970da6c 100644
--- a/audio/chmap.c
+++ b/audio/chmap.c
@@ -1,18 +1,18 @@
/*
* This file is part of mpv.
*
- * mpv is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * mpv is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
*
* mpv is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License along
- * with mpv. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
diff --git a/audio/chmap.h b/audio/chmap.h
index b32c63b6fc..aa9b1c5a10 100644
--- a/audio/chmap.h
+++ b/audio/chmap.h
@@ -1,18 +1,18 @@
/*
* This file is part of mpv.
*
- * mpv is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * mpv is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
*
* mpv is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License along
- * with mpv. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MP_CHMAP_H
diff --git a/audio/chmap_sel.c b/audio/chmap_sel.c
index fa1941e6f6..45b696c924 100644
--- a/audio/chmap_sel.c
+++ b/audio/chmap_sel.c
@@ -1,18 +1,18 @@
/*
* This file is part of mpv.
*
- * mpv is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * mpv is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
*
* mpv is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License along
- * with mpv. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
diff --git a/audio/chmap_sel.h b/audio/chmap_sel.h
index 12ded3b466..5bd8783b83 100644
--- a/audio/chmap_sel.h
+++ b/audio/chmap_sel.h
@@ -1,18 +1,18 @@
/*
* This file is part of mpv.
*
- * mpv is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * mpv is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
*
* mpv is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License along
- * with mpv. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MP_CHMAP_SEL_H
diff --git a/audio/filter/af_lavfi.c b/audio/filter/af_lavfi.c
index af521abd9c..1960ddc247 100644
--- a/audio/filter/af_lavfi.c
+++ b/audio/filter/af_lavfi.c
@@ -3,18 +3,18 @@
*
* Filter graph creation code taken from FFmpeg ffplay.c (LGPL 2.1 or later)
*
- * mpv is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * mpv is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
*
* mpv is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License along
- * with mpv. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
diff --git a/audio/filter/af_rubberband.c b/audio/filter/af_rubberband.c
index 2619e4b210..48bb510679 100644
--- a/audio/filter/af_rubberband.c
+++ b/audio/filter/af_rubberband.c
@@ -1,18 +1,18 @@
/*
* This file is part of mpv.
*
- * mpv is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * mpv is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
*
* mpv is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License along
- * with mpv. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
diff --git a/audio/out/ao_sdl.c b/audio/out/ao_sdl.c
index 5e5bd25b96..627a1098cf 100644
--- a/audio/out/ao_sdl.c
+++ b/audio/out/ao_sdl.c
@@ -4,18 +4,18 @@
*
* This file is part of mpv.
*
- * mpv is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * mpv is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
*
* mpv is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License along
- * with mpv. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
diff --git a/audio/out/ao_wasapi.c b/audio/out/ao_wasapi.c
index f56c853627..5c30f7394a 100644
--- a/audio/out/ao_wasapi.c
+++ b/audio/out/ao_wasapi.c
@@ -3,18 +3,18 @@
*
* Original author: Jonathan Yong <10walls@gmail.com>
*
- * mpv is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * mpv is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
*
* mpv is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License along
- * with mpv. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
#include <math.h>
diff --git a/audio/out/ao_wasapi.h b/audio/out/ao_wasapi.h
index 5ba2aa325c..642d92f66f 100644
--- a/audio/out/ao_wasapi.h
+++ b/audio/out/ao_wasapi.h
@@ -3,18 +3,18 @@
*
* Original author: Jonathan Yong <10walls@gmail.com>
*
- * mpv is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * mpv is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
*
* mpv is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * GNU Lesser General Public License for more details.
*
- * You should have received a copy of the GNU General Public License along
- * with mpv. If not, see <http://www.gnu.org/licenses/>.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MP_AO_WASAPI_H_
diff --git a/audio/out/ao_wasapi_changenotify.c b/audio/out/ao_wasapi_changenotify.c
index c2bce0d42b..c25b806c8e 100644
--- a/audio/out/ao_wasapi_changenotify.c
+++ b/audio/out/ao_wasapi_changenotify.c
@@ -3,18 +3,18 @@
*
* Original author: Jonathan Yong <10walls@gmail.com>
*
- * mpv is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * mpv is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
*
* mpv is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of