├── .gitignore ├── CHANGELOG ├── CODE_STANDARD ├── COPYING ├── CREDITS ├── FAQ ├── INSTALL ├── Makefile.in ├── README ├── README.FreeBSD ├── README.MacOSX ├── README.axis_2100 ├── alg.c ├── alg.h ├── commit-version.sh ├── conf.c ├── conf.h ├── config.h.in ├── configure ├── configure.in ├── draw.c ├── event.c ├── event.h ├── ffmpeg-0.4.8-macosx.patch ├── ffmpeg.c ├── ffmpeg.h ├── git-commit-version.sh ├── jpegutils.c ├── jpegutils.h ├── logger.c ├── logger.h ├── md5.c ├── md5.h ├── mmx.h ├── motion-dist.conf.in ├── motion.1 ├── motion.c ├── motion.h ├── motion.init-Debian.in ├── motion.init-Fedora.in ├── motion.init-FreeBSD.sh.in ├── motion.spec.in ├── motion_guide.html ├── netcam.c ├── netcam.h ├── netcam_ftp.c ├── netcam_ftp.h ├── netcam_jpeg.c ├── netcam_rtsp.c ├── netcam_rtsp.h ├── netcam_wget.c ├── netcam_wget.h ├── picture.c ├── picture.h ├── pwc-ioctl.h ├── pwc-ioctl.h-10.0.10 ├── pwc-ioctl.h-10.0.5 ├── pwc-ioctl.h-pwc8.0 ├── pwc-ioctl.h-pwc9.0.1 ├── rotate.c ├── rotate.h ├── sdl.c ├── sdl.h ├── stream.c ├── stream.h ├── thread1.conf.in ├── thread2.conf.in ├── thread3.conf.in ├── thread4.conf.in ├── track.c ├── track.h ├── version.sh ├── video.c ├── video.h ├── video2.c ├── video_common.c ├── video_freebsd.c ├── video_freebsd.h ├── vloopback_motion.c ├── vloopback_motion.h ├── webhttpd.c └── webhttpd.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .svn/ 3 | *.o 4 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CODE_STANDARD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/CODE_STANDARD -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/CREDITS -------------------------------------------------------------------------------- /FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/FAQ -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/README -------------------------------------------------------------------------------- /README.FreeBSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/README.FreeBSD -------------------------------------------------------------------------------- /README.MacOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/README.MacOSX -------------------------------------------------------------------------------- /README.axis_2100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/README.axis_2100 -------------------------------------------------------------------------------- /alg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/alg.c -------------------------------------------------------------------------------- /alg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/alg.h -------------------------------------------------------------------------------- /commit-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/commit-version.sh -------------------------------------------------------------------------------- /conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/conf.c -------------------------------------------------------------------------------- /conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/conf.h -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/config.h.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/configure -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/configure.in -------------------------------------------------------------------------------- /draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/draw.c -------------------------------------------------------------------------------- /event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/event.c -------------------------------------------------------------------------------- /event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/event.h -------------------------------------------------------------------------------- /ffmpeg-0.4.8-macosx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/ffmpeg-0.4.8-macosx.patch -------------------------------------------------------------------------------- /ffmpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/ffmpeg.c -------------------------------------------------------------------------------- /ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/ffmpeg.h -------------------------------------------------------------------------------- /git-commit-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/git-commit-version.sh -------------------------------------------------------------------------------- /jpegutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/jpegutils.c -------------------------------------------------------------------------------- /jpegutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/jpegutils.h -------------------------------------------------------------------------------- /logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/logger.c -------------------------------------------------------------------------------- /logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/logger.h -------------------------------------------------------------------------------- /md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/md5.c -------------------------------------------------------------------------------- /md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/md5.h -------------------------------------------------------------------------------- /mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/mmx.h -------------------------------------------------------------------------------- /motion-dist.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/motion-dist.conf.in -------------------------------------------------------------------------------- /motion.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/motion.1 -------------------------------------------------------------------------------- /motion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/motion.c -------------------------------------------------------------------------------- /motion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/motion.h -------------------------------------------------------------------------------- /motion.init-Debian.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/motion.init-Debian.in -------------------------------------------------------------------------------- /motion.init-Fedora.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/motion.init-Fedora.in -------------------------------------------------------------------------------- /motion.init-FreeBSD.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/motion.init-FreeBSD.sh.in -------------------------------------------------------------------------------- /motion.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/motion.spec.in -------------------------------------------------------------------------------- /motion_guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/motion_guide.html -------------------------------------------------------------------------------- /netcam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/netcam.c -------------------------------------------------------------------------------- /netcam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/netcam.h -------------------------------------------------------------------------------- /netcam_ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/netcam_ftp.c -------------------------------------------------------------------------------- /netcam_ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/netcam_ftp.h -------------------------------------------------------------------------------- /netcam_jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/netcam_jpeg.c -------------------------------------------------------------------------------- /netcam_rtsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/netcam_rtsp.c -------------------------------------------------------------------------------- /netcam_rtsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/netcam_rtsp.h -------------------------------------------------------------------------------- /netcam_wget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/netcam_wget.c -------------------------------------------------------------------------------- /netcam_wget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/netcam_wget.h -------------------------------------------------------------------------------- /picture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/picture.c -------------------------------------------------------------------------------- /picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/picture.h -------------------------------------------------------------------------------- /pwc-ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/pwc-ioctl.h -------------------------------------------------------------------------------- /pwc-ioctl.h-10.0.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/pwc-ioctl.h-10.0.10 -------------------------------------------------------------------------------- /pwc-ioctl.h-10.0.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/pwc-ioctl.h-10.0.5 -------------------------------------------------------------------------------- /pwc-ioctl.h-pwc8.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/pwc-ioctl.h-pwc8.0 -------------------------------------------------------------------------------- /pwc-ioctl.h-pwc9.0.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/pwc-ioctl.h-pwc9.0.1 -------------------------------------------------------------------------------- /rotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/rotate.c -------------------------------------------------------------------------------- /rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/rotate.h -------------------------------------------------------------------------------- /sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/sdl.c -------------------------------------------------------------------------------- /sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/sdl.h -------------------------------------------------------------------------------- /stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/stream.c -------------------------------------------------------------------------------- /stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/stream.h -------------------------------------------------------------------------------- /thread1.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/thread1.conf.in -------------------------------------------------------------------------------- /thread2.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/thread2.conf.in -------------------------------------------------------------------------------- /thread3.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/thread3.conf.in -------------------------------------------------------------------------------- /thread4.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/thread4.conf.in -------------------------------------------------------------------------------- /track.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/track.c -------------------------------------------------------------------------------- /track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/track.h -------------------------------------------------------------------------------- /version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/version.sh -------------------------------------------------------------------------------- /video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/video.c -------------------------------------------------------------------------------- /video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/video.h -------------------------------------------------------------------------------- /video2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/video2.c -------------------------------------------------------------------------------- /video_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/video_common.c -------------------------------------------------------------------------------- /video_freebsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/video_freebsd.c -------------------------------------------------------------------------------- /video_freebsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/video_freebsd.h -------------------------------------------------------------------------------- /vloopback_motion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/vloopback_motion.c -------------------------------------------------------------------------------- /vloopback_motion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/vloopback_motion.h -------------------------------------------------------------------------------- /webhttpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/webhttpd.c -------------------------------------------------------------------------------- /webhttpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sackmotion/motion/HEAD/webhttpd.h --------------------------------------------------------------------------------