aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-06-20 19:11:58 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-06-30 11:37:04 +0200
commitba457e9adbd8188d48f8a91384461f498e0d10d6 (patch)
tree58ec6e9d36409348e3b758f29719be3c61a5dc88
parent5a30b45c0fe4abaaf69ca8e465bf8113fee23626 (diff)
downloadffmpeg-ba457e9adbd8188d48f8a91384461f498e0d10d6.tar.gz
avfilter/textutils,vf_drawtext,qrencode: Constify function pointers
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavfilter/qrencode.c2
-rw-r--r--libavfilter/textutils.c2
-rw-r--r--libavfilter/textutils.h2
-rw-r--r--libavfilter/vf_drawtext.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/qrencode.c b/libavfilter/qrencode.c
index 0b1f7bb50a..1c7ce23e6e 100644
--- a/libavfilter/qrencode.c
+++ b/libavfilter/qrencode.c
@@ -284,7 +284,7 @@ static int func_eval_expr_formatted(void *ctx, AVBPrint *bp, const char *functio
argv[1][0], positions);
}
-static FFExpandTextFunction expand_text_functions[] = {
+static const FFExpandTextFunction expand_text_functions[] = {
{ "expr", 1, 1, func_eval_expr },
{ "e", 1, 1, func_eval_expr },
{ "expr_formatted", 2, 3, func_eval_expr_formatted },
diff --git a/libavfilter/textutils.c b/libavfilter/textutils.c
index 45967794bc..0b132fd153 100644
--- a/libavfilter/textutils.c
+++ b/libavfilter/textutils.c
@@ -36,7 +36,7 @@ static int ff_expand_text_function_internal(FFExpandTextContext *expand_text, AV
char *name, unsigned argc, char **argv)
{
void *log_ctx = expand_text->log_ctx;
- FFExpandTextFunction *functions = expand_text->functions;
+ const FFExpandTextFunction *functions = expand_text->functions;
unsigned i;
for (i = 0; i < expand_text->functions_nb; i++) {
diff --git a/libavfilter/textutils.h b/libavfilter/textutils.h
index 7fa856c681..d89956bfcc 100644
--- a/libavfilter/textutils.h
+++ b/libavfilter/textutils.h
@@ -74,7 +74,7 @@ typedef struct FFExpandTextContext {
* list of functions to use to expand sequences in the format
* FUNCTION_NAME{PARAMS}
*/
- FFExpandTextFunction *functions;
+ const FFExpandTextFunction *functions;
/**
* number of functions
diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c
index 2b6a0d0839..0ac0a0721c 100644
--- a/libavfilter/vf_drawtext.c
+++ b/libavfilter/vf_drawtext.c
@@ -950,7 +950,7 @@ static int func_eval_expr_int_format(void *ctx, AVBPrint *bp, const char *functi
argv[1][0], positions);
}
-static FFExpandTextFunction expand_text_functions[] = {
+static const FFExpandTextFunction expand_text_functions[] = {
{ "e", 1, 1, func_eval_expr },
{ "eif", 2, 3, func_eval_expr_int_format },
{ "expr", 1, 1, func_eval_expr },