aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/textutils.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-06-20 21:01:34 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-06-30 11:37:06 +0200
commit2330e77c976f4b41ae3ad5526138b3479f595819 (patch)
tree1adbc4c1a5593cda7566dc0827a9fac395ab6811 /libavfilter/textutils.h
parentba457e9adbd8188d48f8a91384461f498e0d10d6 (diff)
downloadffmpeg-2330e77c976f4b41ae3ad5526138b3479f595819.tar.gz
avfilter/textutils: Constify ff_expand_text()
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/textutils.h')
-rw-r--r--libavfilter/textutils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/textutils.h b/libavfilter/textutils.h
index d89956bfcc..8c2399d153 100644
--- a/libavfilter/textutils.h
+++ b/libavfilter/textutils.h
@@ -94,7 +94,7 @@ typedef struct FFExpandTextContext {
* @return negative value corresponding to an AVERROR error code in case of
* errors, a non-negative value otherwise
*/
-int ff_expand_text(FFExpandTextContext *expand_text, char *text, AVBPrint *bp);
+int ff_expand_text(FFExpandTextContext *expand_text, const char *text, AVBPrint *bp);
/**
* Print PTS representation to an AVBPrint object.