Commit 6d7aa437 authored by Reimar Döffinger's avatar Reimar Döffinger

vf_drawtext: move "static const" before "struct".

This is consistent with all other occurrences.
Signed-off-by: 's avatarReimar Döffinger <Reimar.Doeffinger@gmx.de>
parent 2ca7edda
...@@ -268,11 +268,11 @@ AVFILTER_DEFINE_CLASS(drawtext); ...@@ -268,11 +268,11 @@ AVFILTER_DEFINE_CLASS(drawtext);
#define FT_ERRORDEF(e, v, s) { (e), (s) }, #define FT_ERRORDEF(e, v, s) { (e), (s) },
#define FT_ERROR_END_LIST { 0, NULL } }; #define FT_ERROR_END_LIST { 0, NULL } };
struct ft_error static const struct ft_error
{ {
int err; int err;
const char *err_msg; const char *err_msg;
} static const ft_errors[] = } ft_errors[] =
#include FT_ERRORS_H #include FT_ERRORS_H
#define FT_ERRMSG(e) ft_errors[e].err_msg #define FT_ERRMSG(e) ft_errors[e].err_msg
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment