├── .gitignore ├── Makefile.am ├── NOTES ├── README.md ├── VERSION ├── configure.ac ├── examples ├── hls.sh ├── index.html └── index.m3u8 ├── m4 ├── .gitignore ├── Makefile.am ├── README.md ├── cc.m4 ├── docbook.m4 ├── lib.m4 ├── libdl.m4 ├── libedit.m4 ├── libjsondata.m4 ├── libtiff.m4 ├── liburi.m4 ├── libuuid.m4 ├── mysql.m4 ├── nls.m4 ├── pkg.m4 ├── prefix.m4 ├── pthread.m4 └── xcode.m4 ├── psips.c ├── setup.sh ├── t ├── .gitignore ├── Makefile.am ├── basic.c ├── framework.c ├── framework.h ├── perl.t ├── tap.c ├── tap.h └── wrap.c └── tools ├── bump_version.pl ├── get-version.sh └── version.pl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/Makefile.am -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/NOTES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.01 2 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/configure.ac -------------------------------------------------------------------------------- /examples/hls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/examples/hls.sh -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/index.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/examples/index.m3u8 -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/.gitignore -------------------------------------------------------------------------------- /m4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/Makefile.am -------------------------------------------------------------------------------- /m4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/README.md -------------------------------------------------------------------------------- /m4/cc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/cc.m4 -------------------------------------------------------------------------------- /m4/docbook.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/docbook.m4 -------------------------------------------------------------------------------- /m4/lib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/lib.m4 -------------------------------------------------------------------------------- /m4/libdl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/libdl.m4 -------------------------------------------------------------------------------- /m4/libedit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/libedit.m4 -------------------------------------------------------------------------------- /m4/libjsondata.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/libjsondata.m4 -------------------------------------------------------------------------------- /m4/libtiff.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/libtiff.m4 -------------------------------------------------------------------------------- /m4/liburi.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/liburi.m4 -------------------------------------------------------------------------------- /m4/libuuid.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/libuuid.m4 -------------------------------------------------------------------------------- /m4/mysql.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/mysql.m4 -------------------------------------------------------------------------------- /m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/nls.m4 -------------------------------------------------------------------------------- /m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/pkg.m4 -------------------------------------------------------------------------------- /m4/prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/prefix.m4 -------------------------------------------------------------------------------- /m4/pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/pthread.m4 -------------------------------------------------------------------------------- /m4/xcode.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/m4/xcode.m4 -------------------------------------------------------------------------------- /psips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/psips.c -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/setup.sh -------------------------------------------------------------------------------- /t/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/t/.gitignore -------------------------------------------------------------------------------- /t/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/t/Makefile.am -------------------------------------------------------------------------------- /t/basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/t/basic.c -------------------------------------------------------------------------------- /t/framework.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/t/framework.c -------------------------------------------------------------------------------- /t/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/t/framework.h -------------------------------------------------------------------------------- /t/perl.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/t/perl.t -------------------------------------------------------------------------------- /t/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/t/tap.c -------------------------------------------------------------------------------- /t/tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/t/tap.h -------------------------------------------------------------------------------- /t/wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/t/wrap.c -------------------------------------------------------------------------------- /tools/bump_version.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/tools/bump_version.pl -------------------------------------------------------------------------------- /tools/get-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/tools/get-version.sh -------------------------------------------------------------------------------- /tools/version.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyA/psips/HEAD/tools/version.pl --------------------------------------------------------------------------------