diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-02-10 15:13:32 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-02-13 19:20:53 +0100 |
commit | 7331b6e718243c276d391898199e08ba3cdb9545 (patch) | |
tree | f19b667b69731e551a00bedd00cbd3081c67fb63 /libavfilter/vf_yadif.c | |
parent | 92fed11352fae8855b44d99522c86cbfd323a6df (diff) | |
download | ffmpeg-7331b6e718243c276d391898199e08ba3cdb9545.tar.gz |
Drop some completely unnecessary av_unused attributes.
Diffstat (limited to 'libavfilter/vf_yadif.c')
-rw-r--r-- | libavfilter/vf_yadif.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |