summaryrefslogtreecommitdiff
path: root/libavfilter/asrc_flite.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-07 02:53:39 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-08 18:40:45 +0200
commit7fbf1f21ab34649e87747d6cbc6b4b03adc6acb8 (patch)
tree1473efaabee895078bbcaa7bd650d4930917c696 /libavfilter/asrc_flite.c
parentafc95a10aca6beed64531b6eb9df390eea50ded4 (diff)
avfilter/asrc_flite: Don't define an object by accident
The flite filter apparently only wanted to declare a struct, but mistakenly also defined an unused and zero-initialized element with external linkage. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/asrc_flite.c')
-rw-r--r--libavfilter/asrc_flite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/asrc_flite.c b/libavfilter/asrc_flite.c
index e3065cff79..1478cc07fa 100644
--- a/libavfilter/asrc_flite.c
+++ b/libavfilter/asrc_flite.c
@@ -81,7 +81,7 @@ struct voice_entry {
void (*unregister_fn)(cst_voice *);
cst_voice *voice;
unsigned usage_count;
-} voice_entry;
+};
#define MAKE_VOICE_STRUCTURE(voice_name) { \
.name = #voice_name, \