├── .gitignore ├── LICENSE ├── README.md ├── libpsvr ├── LICENSE ├── Makefile ├── README.md ├── build.sh ├── example.c ├── libpsvr.pro ├── morpheus.h ├── psvr.c └── psvr.h ├── psvrvideoplayer.pro └── psvrvideoplayerapp ├── LensDistortedView.qml ├── Pano3DView.qml ├── StereoEffect.js ├── glcode.js ├── main.cpp ├── main.qml ├── psvrsensorsmanager.cpp ├── psvrsensorsmanager.h ├── psvrvideoplayerapp.pro ├── qml.qrc ├── qmlpsvr.cpp ├── qmlpsvr.h ├── three.js └── utils.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.user 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/README.md -------------------------------------------------------------------------------- /libpsvr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/libpsvr/LICENSE -------------------------------------------------------------------------------- /libpsvr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/libpsvr/Makefile -------------------------------------------------------------------------------- /libpsvr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/libpsvr/README.md -------------------------------------------------------------------------------- /libpsvr/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/libpsvr/build.sh -------------------------------------------------------------------------------- /libpsvr/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/libpsvr/example.c -------------------------------------------------------------------------------- /libpsvr/libpsvr.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/libpsvr/libpsvr.pro -------------------------------------------------------------------------------- /libpsvr/morpheus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/libpsvr/morpheus.h -------------------------------------------------------------------------------- /libpsvr/psvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/libpsvr/psvr.c -------------------------------------------------------------------------------- /libpsvr/psvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/libpsvr/psvr.h -------------------------------------------------------------------------------- /psvrvideoplayer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/psvrvideoplayer.pro -------------------------------------------------------------------------------- /psvrvideoplayerapp/LensDistortedView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/psvrvideoplayerapp/LensDistortedView.qml -------------------------------------------------------------------------------- /psvrvideoplayerapp/Pano3DView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/psvrvideoplayerapp/Pano3DView.qml -------------------------------------------------------------------------------- /psvrvideoplayerapp/StereoEffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/psvrvideoplayerapp/StereoEffect.js -------------------------------------------------------------------------------- /psvrvideoplayerapp/glcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/psvrvideoplayerapp/glcode.js -------------------------------------------------------------------------------- /psvrvideoplayerapp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/psvrvideoplayerapp/main.cpp -------------------------------------------------------------------------------- /psvrvideoplayerapp/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/psvrvideoplayerapp/main.qml -------------------------------------------------------------------------------- /psvrvideoplayerapp/psvrsensorsmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/psvrvideoplayerapp/psvrsensorsmanager.cpp -------------------------------------------------------------------------------- /psvrvideoplayerapp/psvrsensorsmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/psvrvideoplayerapp/psvrsensorsmanager.h -------------------------------------------------------------------------------- /psvrvideoplayerapp/psvrvideoplayerapp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/psvrvideoplayerapp/psvrvideoplayerapp.pro -------------------------------------------------------------------------------- /psvrvideoplayerapp/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/psvrvideoplayerapp/qml.qrc -------------------------------------------------------------------------------- /psvrvideoplayerapp/qmlpsvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/psvrvideoplayerapp/qmlpsvr.cpp -------------------------------------------------------------------------------- /psvrvideoplayerapp/qmlpsvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/psvrvideoplayerapp/qmlpsvr.h -------------------------------------------------------------------------------- /psvrvideoplayerapp/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/psvrvideoplayerapp/three.js -------------------------------------------------------------------------------- /psvrvideoplayerapp/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swordfish90/PSVRVideoPlayer/HEAD/psvrvideoplayerapp/utils.js --------------------------------------------------------------------------------