├── .gitattributes ├── README.md └── libavfilter ├── Makefile ├── allfilters.c ├── vf_xpsnr.c └── xpsnr.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferhhi/xpsnr/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferhhi/xpsnr/HEAD/README.md -------------------------------------------------------------------------------- /libavfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferhhi/xpsnr/HEAD/libavfilter/Makefile -------------------------------------------------------------------------------- /libavfilter/allfilters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferhhi/xpsnr/HEAD/libavfilter/allfilters.c -------------------------------------------------------------------------------- /libavfilter/vf_xpsnr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferhhi/xpsnr/HEAD/libavfilter/vf_xpsnr.c -------------------------------------------------------------------------------- /libavfilter/xpsnr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraunhoferhhi/xpsnr/HEAD/libavfilter/xpsnr.h --------------------------------------------------------------------------------