├── .gitignore ├── Makefile.am ├── autogen.sh ├── configure.ac ├── readme.rst └── src ├── classic.c ├── color.c ├── color2.c ├── common.h ├── histogram.c ├── levels.c └── luma.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-histogram/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-histogram/HEAD/Makefile.am -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-histogram/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-histogram/HEAD/configure.ac -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-histogram/HEAD/readme.rst -------------------------------------------------------------------------------- /src/classic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-histogram/HEAD/src/classic.c -------------------------------------------------------------------------------- /src/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-histogram/HEAD/src/color.c -------------------------------------------------------------------------------- /src/color2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-histogram/HEAD/src/color2.c -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-histogram/HEAD/src/common.h -------------------------------------------------------------------------------- /src/histogram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-histogram/HEAD/src/histogram.c -------------------------------------------------------------------------------- /src/levels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-histogram/HEAD/src/levels.c -------------------------------------------------------------------------------- /src/luma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/vapoursynth-histogram/HEAD/src/luma.c --------------------------------------------------------------------------------