This is an automated email from the git hooks/post-receive script.
Git pushed a commit to branch master
in repository ffmpeg.
The following commit(s) were added to refs/heads/master by this push:
new aa08cf8112 swscale/options: add missing option value for SWS_STRICT
aa08cf8112 is described below
commit aa08cf8112c5a05262688f4e2ef7bcd63f5bddfb
Author: Niklas Haas <[email protected]>
AuthorDate: Wed Apr 8 13:02:52 2026 +0200
Commit: Niklas Haas <[email protected]>
CommitDate: Sat May 23 11:31:54 2026 +0200
swscale/options: add missing option value for SWS_STRICT
Signed-off-by: Niklas Haas <[email protected]>
---
libswscale/options.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libswscale/options.c b/libswscale/options.c
index 004988488c..8109f1d23a 100644
--- a/libswscale/options.c
+++ b/libswscale/options.c
@@ -51,6 +51,7 @@ static const AVOption swscale_options[] = {
{ "bitexact", "bit-exact mode", 0,
AV_OPT_TYPE_CONST, { .i64 = SWS_BITEXACT }, .flags = VE, .unit =
"sws_flags" },
{ "error_diffusion", "error diffusion dither", 0,
AV_OPT_TYPE_CONST, { .i64 = SWS_ERROR_DIFFUSION}, .flags = VE, .unit =
"sws_flags" },
{ "unstable", "allow experimental new code", 0,
AV_OPT_TYPE_CONST, { .i64 = SWS_UNSTABLE }, .flags = VE, .unit =
"sws_flags" },
+ { "strict", "require all metadata to be set",0,
AV_OPT_TYPE_CONST, { .i64 = SWS_STRICT }, .flags = VE, .unit =
"sws_flags" },
{ "scaler", "set scaling algorithm", OFFSET(scaler),
AV_OPT_TYPE_INT, { .i64 = SWS_SCALE_AUTO }, .flags = VE, .unit =
"sws_scaler", .max = SWS_SCALE_NB - 1 },
{ "scaler_sub", "set subsampling algorithm", OFFSET(scaler_sub),
AV_OPT_TYPE_INT, { .i64 = SWS_SCALE_AUTO }, .flags = VE, .unit =
"sws_scaler", .max = SWS_SCALE_NB - 1 },
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]