diff options
author | Clément Bœsch <u@pkh.me> | 2014-12-24 15:03:26 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2015-03-18 12:19:08 +0100 |
commit | 304fdfe9f3a3879ce95d01c4dcb7e33bdb68f9ef (patch) | |
tree | 61535b815be4fcc17ba622e9f4faab5a2577fdc1 /libavfilter/Makefile | |
parent | 0f16dfda50cb6b7b13e2a3f02f0823f67eeca748 (diff) | |
download | ffmpeg-streaming-304fdfe9f3a3879ce95d01c4dcb7e33bdb68f9ef.zip ffmpeg-streaming-304fdfe9f3a3879ce95d01c4dcb7e33bdb68f9ef.tar.gz |
lavfi: add showwavespic filter
This is a variant of showwaves. It is implemented as a different filter
so that the user is not allowed to use meaningless options which belong
to showwaves (such as rate).
Major edits done by Stefano Sabatini, from a patch by ubitux.
See thread:
From: Clément Bœsch <u@pkh.me>
To: ffmpeg-devel@ffmpeg.org
Date: Wed, 24 Dec 2014 15:03:26 +0100
Subject: [FFmpeg-devel] [PATCH] avfilter/showwaves: add single_pic option
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index b184f07..2cde029 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -236,6 +236,7 @@ OBJS-$(CONFIG_CONCAT_FILTER) += avf_concat.o OBJS-$(CONFIG_SHOWCQT_FILTER) += avf_showcqt.o OBJS-$(CONFIG_SHOWSPECTRUM_FILTER) += avf_showspectrum.o OBJS-$(CONFIG_SHOWWAVES_FILTER) += avf_showwaves.o +OBJS-$(CONFIG_SHOWWAVESPIC_FILTER) += avf_showwaves.o # multimedia sources OBJS-$(CONFIG_AMOVIE_FILTER) += src_movie.o |