├── .gitignore ├── LICENSE.txt ├── README.md ├── compile.sh ├── gen ├── .gitignore ├── compile.sh └── hdr_sdr_gen.cpp ├── res └── .gitignore └── src ├── ffmpeg └── hdr_sdr.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/so-rose/fast-hdr/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/so-rose/fast-hdr/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/so-rose/fast-hdr/HEAD/README.md -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/so-rose/fast-hdr/HEAD/compile.sh -------------------------------------------------------------------------------- /gen/.gitignore: -------------------------------------------------------------------------------- 1 | hdr_sdr_gen 2 | -------------------------------------------------------------------------------- /gen/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/so-rose/fast-hdr/HEAD/gen/compile.sh -------------------------------------------------------------------------------- /gen/hdr_sdr_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/so-rose/fast-hdr/HEAD/gen/hdr_sdr_gen.cpp -------------------------------------------------------------------------------- /res/.gitignore: -------------------------------------------------------------------------------- 1 | ffmpeg-custom 2 | ffprobe 3 | -------------------------------------------------------------------------------- /src/ffmpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/so-rose/fast-hdr/HEAD/src/ffmpeg -------------------------------------------------------------------------------- /src/hdr_sdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/so-rose/fast-hdr/HEAD/src/hdr_sdr.cpp --------------------------------------------------------------------------------