You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
vf_drawtext: move "static const" before "struct".
This is consistent with all other occurrences. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
@ -268,11 +268,11 @@ AVFILTER_DEFINE_CLASS(drawtext);
|
||||
#define FT_ERRORDEF(e, v, s) { (e), (s) },
|
||||
#define FT_ERROR_END_LIST { 0, NULL } };
|
||||
|
||||
struct ft_error
|
||||
static const struct ft_error
|
||||
{
|
||||
int err;
|
||||
const char *err_msg;
|
||||
} static const ft_errors[] =
|
||||
} ft_errors[] =
|
||||
#include FT_ERRORS_H
|
||||
|
||||
#define FT_ERRMSG(e) ft_errors[e].err_msg
|
||||
|
Reference in New Issue
Block a user