diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-12 21:23:54 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-12 21:23:54 +0100 |
commit | 212b89f8b426d78e1be8be45daaa6604fd0f35c4 (patch) | |
tree | 82cc55f3f49939b8802ed1d4ee8bf3dbb246d5c0 | |
parent | c51fcdf0f62e3be181fa9a10748c819eea1aaf9e (diff) | |
download | ffmpeg-streaming-212b89f8b426d78e1be8be45daaa6604fd0f35c4.zip ffmpeg-streaming-212b89f8b426d78e1be8be45daaa6604fd0f35c4.tar.gz |
avfilter: remove unused variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/avfilter.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index ed16c80..75b42f2 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -626,7 +626,6 @@ static int default_filter_frame(AVFilterLink *link, AVFrame *frame) static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame) { int (*filter_frame)(AVFilterLink *, AVFrame *); - AVFilterPad *src = link->srcpad; AVFilterPad *dst = link->dstpad; AVFrame *out; int ret; |