This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 683fae35e1bf9cc69d903eacc53cf5dde0ca7c7a Author: Jun Zhao <[email protected]> AuthorDate: Sat Jun 27 14:06:24 2026 +0800 Commit: Jun Zhao <[email protected]> CommitDate: Sun Jul 12 00:02:40 2026 +0000 avformat/internal: fix typo allow_unkown -> allow_unknown The declaration of ff_parse_opts_from_query_string() misspelled "unknown" as "unkown". The implementation in utils.c already uses the correct spelling. Signed-off-by: Jun Zhao <[email protected]> --- libavformat/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/internal.h b/libavformat/internal.h index a04343989b..cf42389062 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -680,7 +680,7 @@ int ff_dict_set_timestamp(AVDictionary **dict, const char *key, int64_t timestam * nested protocols are used. * @return <0 on error */ -int ff_parse_opts_from_query_string(void *obj, const char *str, int allow_unkown); +int ff_parse_opts_from_query_string(void *obj, const char *str, int allow_unknown); /** * Make a RFC 4281/6381 like string describing a codec. _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
