Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2017-05-12 21:00:49 +0300
committerPaul B Mahol <onemda@gmail.com>2017-05-13 12:39:28 +0300
commited93ed5ee320db299dc8c65d59c4f25e2eb0acdc (patch)
treed678ae86bbdda736856cf4d15af63584231f8503 /libavfilter/vf_nlmeans.c
parent0fbc7a2169af479f8824f44e1b0f0ede5e1d1eaa (diff)
avfilter: don't anonymously typedef structs
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_nlmeans.c')
-rw-r--r--libavfilter/vf_nlmeans.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_nlmeans.c b/libavfilter/vf_nlmeans.c
index 2487813504..e4952e187e 100644
--- a/libavfilter/vf_nlmeans.c
+++ b/libavfilter/vf_nlmeans.c
@@ -47,7 +47,7 @@ struct weighted_avg {
#define WEIGHT_LUT_NBITS 9
#define WEIGHT_LUT_SIZE (1<<WEIGHT_LUT_NBITS)
-typedef struct {
+typedef struct NLMeansContext {
const AVClass *class;
int nb_planes;
int chroma_w, chroma_h;