mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-28 02:12:28 +00:00
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:
parent
afc95a10ac
commit
7fbf1f21ab
@ -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…
Reference in New Issue
Block a user