diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-05-10 20:06:46 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-05-10 20:07:23 +0200 |
commit | 98e409ecaa3d3cc2a20c96b72ef11450e2c31121 (patch) | |
tree | 0e50bd369fafb28b2260a0195fefb20437a7585d | |
parent | 648dbae5190210582c465f6304092847c0858062 (diff) | |
download | ffmpeg-98e409ecaa3d3cc2a20c96b72ef11450e2c31121.tar.gz |
vf_idet: remove unused variables
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/vf_idet.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavfilter/vf_idet.c b/libavfilter/vf_idet.c index e7a9387ccb..0441c78fd0 100644 --- a/libavfilter/vf_idet.c +++ b/libavfilter/vf_idet.c @@ -102,7 +102,6 @@ static void filter(AVFilterContext *ctx) int w = idet->cur->video->w; int h = idet->cur->video->h; int refs = idet->cur->linesize[i]; - int df = (idet->csp->comp[i].depth_minus1 + 8) / 8; if (i && i<3) { w >>= idet->csp->log2_chroma_w; @@ -295,7 +294,6 @@ static int query_formats(AVFilterContext *ctx) static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) { IDETContext *idet = ctx->priv; - int cpu_flags = av_get_cpu_flags(); idet->csp = NULL; |