diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2022-08-08 14:02:31 +0200 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2022-08-19 22:09:36 +0200 |
commit | aca569aad26f33fe68eb36c5c689b2dc4de77084 (patch) | |
tree | b6cd9eb66cd151a89d028bb35efed8b58c1ab13b /libswscale/Makefile | |
parent | f2de911818fbd7e73343803626b697fd0c968121 (diff) | |
download | ffmpeg-aca569aad26f33fe68eb36c5c689b2dc4de77084.tar.gz |
swscale/input: add rgbaf16 input support
This is by no means perfect, since at least ddagrab will return scRGB
data with values outside of 0.0f to 1.0f for HDR values.
Its primary purpose is to be able to work with the format at all.
Diffstat (limited to 'libswscale/Makefile')
-rw-r--r-- | libswscale/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswscale/Makefile b/libswscale/Makefile index 4c950e6c43..757997b401 100644 --- a/libswscale/Makefile +++ b/libswscale/Makefile @@ -9,6 +9,7 @@ OBJS = alphablend.o \ hscale.o \ hscale_fast_bilinear.o \ gamma.o \ + half2float.o \ input.o \ options.o \ output.o \ |