Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
d8e763fd
Commit
d8e763fd
authored
Jan 05, 2014
by
Robert Krüger
Committed by
Diego Biurrun
Jan 13, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vf_yadif: Relicense from GPL to LGPL
All copyright holders have agreed to the relicensing.
parent
46bacb5c
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
36 additions
and
38 deletions
+36
-38
LICENSE
LICENSE
+0
-1
configure
configure
+0
-1
vf_yadif.c
libavfilter/vf_yadif.c
+9
-9
vf_yadif.asm
libavfilter/x86/vf_yadif.asm
+9
-9
vf_yadif_init.c
libavfilter/x86/vf_yadif_init.c
+9
-9
yadif.h
libavfilter/yadif.h
+9
-9
No files found.
LICENSE
View file @
d8e763fd
...
...
@@ -21,7 +21,6 @@ Specifically, the GPL parts of Libav are
- vf_cropdetect.c
- vf_delogo.c
- vf_hqdn3d.c
- vf_yadif.c
Should you, for whatever reason, prefer to use version 3 of the (L)GPL, then
the configure parameter --enable-version3 will activate this licensing option
...
...
configure
View file @
d8e763fd
...
...
@@ -2012,7 +2012,6 @@ interlace_filter_deps="gpl"
resample_filter_deps
=
"avresample"
ocv_filter_deps
=
"libopencv"
scale_filter_deps
=
"swscale"
yadif_filter_deps
=
"gpl"
# examples
output_example_deps
=
"avcodec avformat avutil swscale"
...
...
libavfilter/vf_yadif.c
View file @
d8e763fd
...
...
@@ -4,19 +4,19 @@
*
* This file is part of Libav.
*
* Libav 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, o
r
* (at your option) any later version.
* Libav 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; eithe
r
*
version 2.1 of the License, or
(at your option) any later version.
*
* Libav 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.
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU
*
Lesser
General Public License for more details.
*
* You should have received a copy of the GNU
General Public License along
*
with Libav; if not, write to the Free Software Foundation, Inc.,
*
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* You should have received a copy of the GNU
Lesser General Public
*
License along with Libav; if not, write to the Free Software
*
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/cpu.h"
...
...
libavfilter/x86/vf_yadif.asm
View file @
d8e763fd
...
...
@@ -6,19 +6,19 @@
;*
;* This file is part of Libav.
;*
;* Libav 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, o
r
;* (at your option) any later version.
;* Libav 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; eithe
r
;*
version 2.1 of the License, or
(at your option) any later version.
;*
;* Libav 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.
;* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU
;*
Lesser
General Public License for more details.
;*
;* You should have received a copy of the GNU
General Public License along
;*
with Libav; if not, write to the Free Software Foundation, Inc.,
;*
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
;* You should have received a copy of the GNU
Lesser General Public
;*
License along with Libav; if not, write to the Free Software
;*
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************
%include
"libavutil/x86/x86util.asm"
...
...
libavfilter/x86/vf_yadif_init.c
View file @
d8e763fd
...
...
@@ -3,19 +3,19 @@
*
* This file is part of Libav.
*
* Libav 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, o
r
* (at your option) any later version.
* Libav 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; eithe
r
*
version 2.1 of the License, or
(at your option) any later version.
*
* Libav 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.
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU
*
Lesser
General Public License for more details.
*
* You should have received a copy of the GNU
General Public License along
*
with Libav; if not, write to the Free Software Foundation, Inc.,
*
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* You should have received a copy of the GNU
Lesser General Public
*
License along with Libav; if not, write to the Free Software
*
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/attributes.h"
...
...
libavfilter/yadif.h
View file @
d8e763fd
/*
* This file is part of Libav.
*
* Libav 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, o
r
* (at your option) any later version.
* Libav 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; eithe
r
*
version 2.1 of the License, or
(at your option) any later version.
*
* Libav 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.
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU
*
Lesser
General Public License for more details.
*
* You should have received a copy of the GNU
General Public License along
*
with Libav; if not, write to the Free Software Foundation, Inc.,
*
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
* You should have received a copy of the GNU
Lesser General Public
*
License along with Libav; if not, write to the Free Software
*
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef AVFILTER_YADIF_H
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment