From 7331b6e718243c276d391898199e08ba3cdb9545 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 10 Feb 2012 15:13:32 +0100 Subject: Drop some completely unnecessary av_unused attributes. --- libavfilter/vf_gradfun.c | 2 +- libavfilter/vf_yadif.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'libavfilter') diff --git a/libavfilter/vf_gradfun.c b/libavfilter/vf_gradfun.c index c6663c4102..9da9b20a70 100644 --- a/libavfilter/vf_gradfun.c +++ b/libavfilter/vf_gradfun.c @@ -120,7 +120,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) GradFunContext *gf = ctx->priv; float thresh = 1.2; int radius = 16; - av_unused int cpu_flags = av_get_cpu_flags(); + int cpu_flags = av_get_cpu_flags(); if (args) sscanf(args, "%f:%d", &thresh, &radius); diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c index ca2adb2906..12b37836f8 100644 --- a/libavfilter/vf_yadif.c +++ b/libavfilter/vf_yadif.c @@ -372,7 +372,7 @@ static int query_formats(AVFilterContext *ctx) static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) { YADIFContext *yadif = ctx->priv; - av_unused int cpu_flags = av_get_cpu_flags(); + int cpu_flags = av_get_cpu_flags(); yadif->mode = 0; yadif->parity = -1; -- cgit v1.2.3