aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorNiklas Haas <git@haasn.dev>2024-10-10 15:56:32 +0200
committerNiklas Haas <git@haasn.dev>2024-11-25 11:02:12 +0100
commitfb1696400924e14e65f842a93300b95a23f849fa (patch)
tree30fc06c32edbb05359b5afea87463a498bdf1b99 /doc
parent6a91a165fdae1cb19e48b9a403d94a930ffc54bb (diff)
downloadffmpeg-fb1696400924e14e65f842a93300b95a23f849fa.tar.gz
swscale: organize and better document flags
Group them into an enum rather than random #defines, and document their behavior a bit more obviously. Of particular note, I discovered that SWS_DIRECT_BGR is not referenced anywhere else in the code base. As such, I have moved it to the deprecated section, alongside SWS_ERROR_DIFFUSION. Sponsored-by: Sovereign Tech Fund Signed-off-by: Niklas Haas <git@haasn.dev>
Diffstat (limited to 'doc')
-rw-r--r--doc/APIchanges3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/APIchanges b/doc/APIchanges
index a0c6b2c82a..0d8ef0bbe3 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -2,6 +2,9 @@ The last version increases of all libraries were on 2024-03-07
API changes, most recent first:
+2024-11-25 - xxxxxxxxxx - lsws 8.11.100 - swscale.h
+ Replace #define-based SWS_* flags by enum SwsFlags.
+
2024-11-25 - xxxxxxxxxx - lsws 8.10.100 - swscale.h
Publicly expose struct SwsContext, enum SwsDither, and enum SwsAlphaBlend.