diff options
author | Leo Izen <leo.izen@gmail.com> | 2023-01-30 11:50:10 -0500 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-02-09 15:35:14 +0100 |
commit | 719a93f4e40b202c5b74b58bcff85395a3edd0c7 (patch) | |
tree | f91eafa4550e170cb9b26bde5db75c3f05f55fb8 /libavutil/tests | |
parent | dc1b8135e096e4a41c1d606f8ca5795053136ad7 (diff) | |
download | ffmpeg-719a93f4e40b202c5b74b58bcff85395a3edd0c7.tar.gz |
avutil/{color_utils, csp}: merge color_utils into csp and expose API
libavutil/color_utils contains some avpriv_ symbols that map
enum AVTransferCharacteristic values to gamma-curve approximations and
to the actual transfer functions to invert them (i.e. -> linear).
There's two issues with this:
(1) avpriv is evil and should be avoided whenever possible
(2) libavutil/csp.h exposes a public API for handling color that
already handles primaries and matricies
I don't see any reason this API has to be private, so this commit takes
the functionality from avutil/color_utils and merges it into avutil/csp
with an exposed av_ API rather than the previous avpriv_ API.
Every reference to the previous API has been updated to point to the
new one. color_utils.h has been deleted as well. This should not break
any applications as it only contained avpriv_ symbols in the first
place, so nothing in that header could be referenced by other
applications.
Signed-off-by: Leo Izen <leo.izen@gmail.com>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavutil/tests')
-rw-r--r-- | libavutil/tests/color_utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/tests/color_utils.c b/libavutil/tests/color_utils.c index 4bdc550330..95fb3c1d56 100644 --- a/libavutil/tests/color_utils.c +++ b/libavutil/tests/color_utils.c @@ -19,7 +19,7 @@ */ #include <stdio.h> -#include "libavutil/color_utils.c" +#include "libavutil/csp.h" #include "libavutil/macros.h" int main(int argc, char *argv[]) @@ -32,7 +32,7 @@ int main(int argc, char *argv[]) }; for(i = 0; i < AVCOL_TRC_NB; i++) { - avpriv_trc_function func = avpriv_get_trc_function_from_trc(i); + av_csp_trc_function func = av_csp_trc_func_from_id(i); for(j = 0; j < FF_ARRAY_ELEMS(test_data); j++) { if(func != NULL) { double result = func(test_data[j]); |