diff options
author | James Almer <jamrial@gmail.com> | 2017-10-26 16:46:11 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-10-26 16:46:11 -0300 |
commit | 99ba85a0e24bad519a633a1a113d838897bee0b1 (patch) | |
tree | 12f015578043954e3f85f4d0588dad886ef20ef1 | |
parent | ce9e07e6b67517cfa7603f97702c1645335c0634 (diff) | |
parent | f5950b8fd61ec85e0ad8790bea56b37ceea19436 (diff) | |
download | ffmpeg-99ba85a0e24bad519a633a1a113d838897bee0b1.tar.gz |
Merge commit 'f5950b8fd61ec85e0ad8790bea56b37ceea19436'
* commit 'f5950b8fd61ec85e0ad8790bea56b37ceea19436':
lavfi: Drop unused and empty header file
Merged-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | doc/examples/filtering_audio.c | 1 | ||||
-rw-r--r-- | doc/examples/filtering_video.c | 1 | ||||
-rw-r--r-- | doc/examples/transcoding.c | 1 | ||||
-rw-r--r-- | libavdevice/lavfi.c | 1 | ||||
-rw-r--r-- | libavfilter/Makefile | 1 | ||||
-rw-r--r-- | libavfilter/avfiltergraph.h | 28 |
6 files changed, 0 insertions, 33 deletions
diff --git a/doc/examples/filtering_audio.c b/doc/examples/filtering_audio.c index 9fc4f1cb7e..d58b9b75ea 100644 --- a/doc/examples/filtering_audio.c +++ b/doc/examples/filtering_audio.c @@ -32,7 +32,6 @@ #include <libavcodec/avcodec.h> #include <libavformat/avformat.h> -#include <libavfilter/avfiltergraph.h> #include <libavfilter/buffersink.h> #include <libavfilter/buffersrc.h> #include <libavutil/opt.h> diff --git a/doc/examples/filtering_video.c b/doc/examples/filtering_video.c index 4e09c6fba4..fedb2e1c99 100644 --- a/doc/examples/filtering_video.c +++ b/doc/examples/filtering_video.c @@ -32,7 +32,6 @@ #include <libavcodec/avcodec.h> #include <libavformat/avformat.h> -#include <libavfilter/avfiltergraph.h> #include <libavfilter/buffersink.h> #include <libavfilter/buffersrc.h> #include <libavutil/opt.h> diff --git a/doc/examples/transcoding.c b/doc/examples/transcoding.c index fb15a2148d..e1b3311081 100644 --- a/doc/examples/transcoding.c +++ b/doc/examples/transcoding.c @@ -30,7 +30,6 @@ #include <libavcodec/avcodec.h> #include <libavformat/avformat.h> -#include <libavfilter/avfiltergraph.h> #include <libavfilter/buffersink.h> #include <libavfilter/buffersrc.h> #include <libavutil/opt.h> diff --git a/libavdevice/lavfi.c b/libavdevice/lavfi.c index 986e579813..5273717e6b 100644 --- a/libavdevice/lavfi.c +++ b/libavdevice/lavfi.c @@ -38,7 +38,6 @@ #include "libavutil/parseutils.h" #include "libavutil/pixdesc.h" #include "libavfilter/avfilter.h" -#include "libavfilter/avfiltergraph.h" #include "libavfilter/buffersink.h" #include "libavformat/avio_internal.h" #include "libavformat/internal.h" diff --git a/libavfilter/Makefile b/libavfilter/Makefile index d2f0495f37..9873532d07 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -2,7 +2,6 @@ NAME = avfilter DESC = FFmpeg audio/video filtering library HEADERS = avfilter.h \ - avfiltergraph.h \ buffersink.h \ buffersrc.h \ version.h \ diff --git a/libavfilter/avfiltergraph.h b/libavfilter/avfiltergraph.h deleted file mode 100644 index b31d581ca0..0000000000 --- a/libavfilter/avfiltergraph.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Filter graphs - * copyright (c) 2007 Bobby Bingham - * - * This file is part of FFmpeg. - * - * FFmpeg 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. - * - * FFmpeg 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with FFmpeg; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#ifndef AVFILTER_AVFILTERGRAPH_H -#define AVFILTER_AVFILTERGRAPH_H - -#include "avfilter.h" -#include "libavutil/log.h" - -#endif /* AVFILTER_AVFILTERGRAPH_H */ |