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>
pull/364/head
Andreas Rheinhardt 3 years ago
parent afc95a10ac
commit 7fbf1f21ab
  1. 2
      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, \

Loading…
Cancel
Save