From ed93ed5ee320db299dc8c65d59c4f25e2eb0acdc Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Fri, 12 May 2017 20:00:49 +0200 Subject: avfilter: don't anonymously typedef structs Signed-off-by: Paul B Mahol --- libavfilter/vf_noise.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavfilter/vf_noise.h') diff --git a/libavfilter/vf_noise.h b/libavfilter/vf_noise.h index 2207ed961f..92998e54c9 100644 --- a/libavfilter/vf_noise.h +++ b/libavfilter/vf_noise.h @@ -34,7 +34,7 @@ #define NOISE_AVERAGED 8 #define NOISE_PATTERN 16 -typedef struct { +typedef struct FilterParams { int strength; unsigned flags; AVLFG lfg; @@ -45,7 +45,7 @@ typedef struct { int rand_shift_init; } FilterParams; -typedef struct { +typedef struct NoiseContext { const AVClass *class; int nb_planes; int bytewidth[4]; -- cgit v1.2.3