aboutsummaryrefslogtreecommitdiffstats
path: root/fftools/textformat/avtextformat.h
diff options
context:
space:
mode:
authorsoftworkz <softworkz@hotmail.com>2025-04-29 02:27:39 +0200
committersoftworkz <softworkz@hotmail.com>2025-05-15 23:04:44 +0200
commitb71b444a3ad24eec28ca92545cc613360251e34e (patch)
treef3771297aa763c040c14aae821fd7908371c717b /fftools/textformat/avtextformat.h
parentbb3a14489e017f3638f145f08ad541ace08fe200 (diff)
downloadffmpeg-b71b444a3ad24eec28ca92545cc613360251e34e.tar.gz
fftools/textformat: Add flags param to function avtext_print_integer()
Make this function work analog to avtext_print_string() which already has a flags parameter. Signed-off-by: softworkz <softworkz@hotmail.com>
Diffstat (limited to 'fftools/textformat/avtextformat.h')
-rw-r--r--fftools/textformat/avtextformat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fftools/textformat/avtextformat.h b/fftools/textformat/avtextformat.h
index 87f57d8c24..8f406de322 100644
--- a/fftools/textformat/avtextformat.h
+++ b/fftools/textformat/avtextformat.h
@@ -138,7 +138,7 @@ void avtext_print_section_header(AVTextFormatContext *tctx, const void *data, in
void avtext_print_section_footer(AVTextFormatContext *tctx);
-void avtext_print_integer(AVTextFormatContext *tctx, const char *key, int64_t val);
+void avtext_print_integer(AVTextFormatContext *tctx, const char *key, int64_t val, int flags);
int avtext_print_string(AVTextFormatContext *tctx, const char *key, const char *val, int flags);