summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-05-26 01:48:39 +0200
committerwm4 <wm4@nowhere>2013-05-26 16:44:20 +0200
commit58a7d81dc55835fb0f5cc6a3f14288d722f83c91 (patch)
tree2f7cce21b79b6685348aca207938512cb2917814 /Makefile
parent39225ed19676aa054aa36eb1e09b72ec712ae368 (diff)
downloadmpv-58a7d81dc55835fb0f5cc6a3f14288d722f83c91.tar.bz2
mpv-58a7d81dc55835fb0f5cc6a3f14288d722f83c91.tar.xz
gl_video: improve dithering
Use a different algorithm to generate the dithering matrix. This looks much better than the previous ordered dither matrix with its cross-hatch artifacts. The matrix generation algorithm as well as its implementation was contributed by Wessel Dankers aka Fruit. The code in dither.c is his implementation, reformatted and with static global variables removed by me. The new matrix is uploaded as float texture - before this commit, it was a normal integer fixed point matrix. This means dithering will be disabled on systems without float textures. The size of the dithering matrix can be configured, as the matrix is generated at runtime. The generation of the matrix can take rather long, and is already unacceptable with size 8. The default is at 6, which takes about 100 ms on a Core2 Duo system with dither.c compiled at -O2, which I consider just about acceptable. The old ordered dithering is still available and can be selected by putting the dither=ordered sub-option. The ordered dither matrix generation code was moved to dither.c. This function was originally written by Uoti Urpala.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 182094993e..1662f6f1e1 100644
--- a/Makefile
+++ b/Makefile
@@ -90,7 +90,7 @@ SOURCES-$(DIRECT3D) += video/out/vo_direct3d.c \
SOURCES-$(DSOUND) += audio/out/ao_dsound.c
SOURCES-$(GL) += video/out/gl_common.c video/out/gl_osd.c \
video/out/vo_opengl.c video/out/gl_lcms.c \
- video/out/gl_video.c \
+ video/out/gl_video.c video/out/dither.c \
video/out/vo_opengl_old.c \
video/out/pnm_loader.c