diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-06-20 19:11:58 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-06-30 11:37:04 +0200 |
commit | ba457e9adbd8188d48f8a91384461f498e0d10d6 (patch) | |
tree | 58ec6e9d36409348e3b758f29719be3c61a5dc88 /libavfilter/textutils.h | |
parent | 5a30b45c0fe4abaaf69ca8e465bf8113fee23626 (diff) | |
download | ffmpeg-ba457e9adbd8188d48f8a91384461f498e0d10d6.tar.gz |
avfilter/textutils,vf_drawtext,qrencode: Constify function pointers
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/textutils.h')
-rw-r--r-- | libavfilter/textutils.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |