├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── data ├── motion-filter │ ├── en-US.ini │ └── zh-TW.ini └── motion-transition │ ├── en-US.ini │ └── zh-TW.ini ├── external └── FindLibObs.cmake ├── img ├── motion.gif ├── motion2.gif ├── motion3.gif └── transition.gif └── src ├── helper.c ├── helper.h ├── motion-filter ├── CMakeLists.txt └── motion-filter.c └── motion-transition ├── CMakeLists.txt └── motion-transition.c /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # .gitignore 3 | build/ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/README.md -------------------------------------------------------------------------------- /data/motion-filter/en-US.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/data/motion-filter/en-US.ini -------------------------------------------------------------------------------- /data/motion-filter/zh-TW.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/data/motion-filter/zh-TW.ini -------------------------------------------------------------------------------- /data/motion-transition/en-US.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/data/motion-transition/en-US.ini -------------------------------------------------------------------------------- /data/motion-transition/zh-TW.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/data/motion-transition/zh-TW.ini -------------------------------------------------------------------------------- /external/FindLibObs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/external/FindLibObs.cmake -------------------------------------------------------------------------------- /img/motion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/img/motion.gif -------------------------------------------------------------------------------- /img/motion2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/img/motion2.gif -------------------------------------------------------------------------------- /img/motion3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/img/motion3.gif -------------------------------------------------------------------------------- /img/transition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/img/transition.gif -------------------------------------------------------------------------------- /src/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/src/helper.c -------------------------------------------------------------------------------- /src/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/src/helper.h -------------------------------------------------------------------------------- /src/motion-filter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/src/motion-filter/CMakeLists.txt -------------------------------------------------------------------------------- /src/motion-filter/motion-filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/src/motion-filter/motion-filter.c -------------------------------------------------------------------------------- /src/motion-transition/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/src/motion-transition/CMakeLists.txt -------------------------------------------------------------------------------- /src/motion-transition/motion-transition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatxFish/motion-effect/HEAD/src/motion-transition/motion-transition.c --------------------------------------------------------------------------------