Add optional colour correction + interframe blending

This commit is contained in:
jdgleaver
2020-09-21 17:50:21 +01:00
parent 4a2848af48
commit aa7feb70ca
11 changed files with 8964 additions and 470 deletions

12
tools/Makefile Normal file
View File

@@ -0,0 +1,12 @@
CC = gcc
CFLAGS = -Wall
TARGET = generate_cc_lut
all: $(TARGET)
$(TARGET): $(TARGET).c
$(CC) $(CFLAGS) -o $(TARGET) $(TARGET).c -lm
clean:
$(RM) $(TARGET)