'extras/get_disto' example: compute PSNR between two files

Change-Id: I40e693e52d8eb4e32b86273952dac2e5eefe6e7c
This commit is contained in:
skal
2016-07-20 08:43:48 -07:00
parent 33d8d0d4d3
commit 1e7d4401dc
3 changed files with 142 additions and 4 deletions

View File

@ -9,3 +9,11 @@ libwebpextras_la_SOURCES += extras.c extras.h
libwebpextras_la_CPPFLAGS = $(AM_CPPFLAGS)
libwebpextras_la_LIBADD = ../src/libwebp.la
noinst_PROGRAMS = get_disto
get_disto_SOURCES = get_disto.c
get_disto_CPPFLAGS = $(AM_CPPFLAGS)
get_disto_LDADD = ../imageio/libexample_util.la ../imageio/libimagedec.la
get_disto_LDADD += ../src/libwebp.la
get_disto_LDADD += $(PNG_LIBS) $(JPEG_LIBS) $(TIFF_LIBS)