├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── client.c ├── client.h ├── constants.h ├── dump2file.c ├── libmjpeg2http.c ├── libmjpeg2http.h ├── list.h ├── main.c ├── makefile ├── protocol.h ├── server.c ├── server.h ├── test_mem.c ├── video.c └── video.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | mjpeg2http 3 | build/ 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/README.md -------------------------------------------------------------------------------- /client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/client.c -------------------------------------------------------------------------------- /client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/client.h -------------------------------------------------------------------------------- /constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/constants.h -------------------------------------------------------------------------------- /dump2file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/dump2file.c -------------------------------------------------------------------------------- /libmjpeg2http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/libmjpeg2http.c -------------------------------------------------------------------------------- /libmjpeg2http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/libmjpeg2http.h -------------------------------------------------------------------------------- /list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/list.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/main.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/makefile -------------------------------------------------------------------------------- /protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/protocol.h -------------------------------------------------------------------------------- /server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/server.c -------------------------------------------------------------------------------- /server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/server.h -------------------------------------------------------------------------------- /test_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/test_mem.c -------------------------------------------------------------------------------- /video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/video.c -------------------------------------------------------------------------------- /video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nolasoft/mjpeg2http/HEAD/video.h --------------------------------------------------------------------------------