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>
This commit is contained in:
Andreas Rheinhardt 2021-08-07 02:53:39 +02:00
parent afc95a10ac
commit 7fbf1f21ab

View File

@ -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, \