├── .gitignore ├── README.md ├── examples ├── ofxHAPAVPlayerBenchmark │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ │ └── data │ │ │ ├── .gitkeep │ │ │ ├── STND_LEFT_WALK_LEFT_STND_LEFT_00_BLADIMIRSL.mov │ │ │ └── STND_RIGT_WALK_RIGT_STND_RIGT_00_BLADIMIRSL.mov │ ├── config.make │ ├── ofxHAPAVPlayerBenchmark.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── ofxHAPAVPlayerBenchmark.xcscmblueprint │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── ofxHAPAVPlayerBenchmark Debug.xcscheme │ │ │ └── ofxHAPAVPlayerBenchmark Release.xcscheme │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h └── ofxHAPAVPlayerExample │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── SampleHap.mov │ │ ├── SampleHapAlpha.mov │ │ ├── SampleHapQ.mov │ │ └── SampleQT.mov │ ├── config.make │ ├── ofxHAPAVPlayerExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── ofxHAPAVPlayerExample.xcscmblueprint │ └── xcshareddata │ │ └── xcschemes │ │ ├── ofxHAPAVPlayerExample Debug.xcscheme │ │ └── ofxHAPAVPlayerExample Release.xcscheme │ ├── openFrameworks-Info.plist │ └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── libs └── Hap │ └── lib │ └── osx │ └── HapInAVFoundation.framework │ ├── HapInAVFoundation │ ├── Headers │ ├── Resources │ └── Versions │ ├── A │ ├── Frameworks │ │ ├── libsnappy.dylib │ │ └── libsquish.dylib │ ├── HapInAVFoundation │ ├── Headers │ │ ├── AVAssetAdditions.h │ │ ├── AVAssetReaderHapTrackOutput.h │ │ ├── AVAssetWriterHapInput.h │ │ ├── AVPlayerItemAdditions.h │ │ ├── AVPlayerItemHapDXTOutput.h │ │ ├── CMBlockBufferPool.h │ │ ├── HapCodecSubTypes.h │ │ ├── HapDecoderFrame.h │ │ ├── HapEncoderFrame.h │ │ ├── HapInAVFoundation.h │ │ ├── HapPlatform.h │ │ ├── PixelFormats.h │ │ └── hap.h │ └── Resources │ │ └── Info.plist │ └── Current └── src ├── ofxHAPAVPlayer.h ├── ofxHAPAVPlayer.mm ├── ofxHAPAVPlayerDelegate.h └── ofxHAPAVPlayerDelegate.mm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/README.md -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerBenchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerBenchmark/Makefile -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerBenchmark/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerBenchmark/Project.xcconfig -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerBenchmark/addons.make: -------------------------------------------------------------------------------- 1 | ofxHAPAVPlayer 2 | -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerBenchmark/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerBenchmark/bin/data/STND_LEFT_WALK_LEFT_STND_LEFT_00_BLADIMIRSL.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerBenchmark/bin/data/STND_LEFT_WALK_LEFT_STND_LEFT_00_BLADIMIRSL.mov -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerBenchmark/bin/data/STND_RIGT_WALK_RIGT_STND_RIGT_00_BLADIMIRSL.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerBenchmark/bin/data/STND_RIGT_WALK_RIGT_STND_RIGT_00_BLADIMIRSL.mov -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerBenchmark/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerBenchmark/config.make -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerBenchmark/ofxHAPAVPlayerBenchmark.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerBenchmark/ofxHAPAVPlayerBenchmark.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerBenchmark/ofxHAPAVPlayerBenchmark.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerBenchmark/ofxHAPAVPlayerBenchmark.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerBenchmark/ofxHAPAVPlayerBenchmark.xcodeproj/project.xcworkspace/xcshareddata/ofxHAPAVPlayerBenchmark.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerBenchmark/ofxHAPAVPlayerBenchmark.xcodeproj/project.xcworkspace/xcshareddata/ofxHAPAVPlayerBenchmark.xcscmblueprint -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerBenchmark/ofxHAPAVPlayerBenchmark.xcodeproj/xcshareddata/xcschemes/ofxHAPAVPlayerBenchmark Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerBenchmark/ofxHAPAVPlayerBenchmark.xcodeproj/xcshareddata/xcschemes/ofxHAPAVPlayerBenchmark Debug.xcscheme -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerBenchmark/ofxHAPAVPlayerBenchmark.xcodeproj/xcshareddata/xcschemes/ofxHAPAVPlayerBenchmark Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerBenchmark/ofxHAPAVPlayerBenchmark.xcodeproj/xcshareddata/xcschemes/ofxHAPAVPlayerBenchmark Release.xcscheme -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerBenchmark/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerBenchmark/openFrameworks-Info.plist -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerBenchmark/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerBenchmark/src/main.cpp -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerBenchmark/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerBenchmark/src/ofApp.cpp -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerBenchmark/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerBenchmark/src/ofApp.h -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerExample/Makefile -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerExample/Project.xcconfig -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxHAPAVPlayer 2 | -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/bin/data/SampleHap.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerExample/bin/data/SampleHap.mov -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/bin/data/SampleHapAlpha.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerExample/bin/data/SampleHapAlpha.mov -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/bin/data/SampleHapQ.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerExample/bin/data/SampleHapQ.mov -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/bin/data/SampleQT.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerExample/bin/data/SampleQT.mov -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerExample/config.make -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/ofxHAPAVPlayerExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerExample/ofxHAPAVPlayerExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/ofxHAPAVPlayerExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerExample/ofxHAPAVPlayerExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/ofxHAPAVPlayerExample.xcodeproj/project.xcworkspace/xcshareddata/ofxHAPAVPlayerExample.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerExample/ofxHAPAVPlayerExample.xcodeproj/project.xcworkspace/xcshareddata/ofxHAPAVPlayerExample.xcscmblueprint -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/ofxHAPAVPlayerExample.xcodeproj/xcshareddata/xcschemes/ofxHAPAVPlayerExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerExample/ofxHAPAVPlayerExample.xcodeproj/xcshareddata/xcschemes/ofxHAPAVPlayerExample Debug.xcscheme -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/ofxHAPAVPlayerExample.xcodeproj/xcshareddata/xcschemes/ofxHAPAVPlayerExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerExample/ofxHAPAVPlayerExample.xcodeproj/xcshareddata/xcschemes/ofxHAPAVPlayerExample Release.xcscheme -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerExample/src/main.cpp -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerExample/src/ofApp.cpp -------------------------------------------------------------------------------- /examples/ofxHAPAVPlayerExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/examples/ofxHAPAVPlayerExample/src/ofApp.h -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/HapInAVFoundation: -------------------------------------------------------------------------------- 1 | Versions/Current/HapInAVFoundation -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Frameworks/libsnappy.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Frameworks/libsnappy.dylib -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Frameworks/libsquish.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Frameworks/libsquish.dylib -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/HapInAVFoundation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/HapInAVFoundation -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/AVAssetAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/AVAssetAdditions.h -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/AVAssetReaderHapTrackOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/AVAssetReaderHapTrackOutput.h -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/AVAssetWriterHapInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/AVAssetWriterHapInput.h -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/AVPlayerItemAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/AVPlayerItemAdditions.h -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/AVPlayerItemHapDXTOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/AVPlayerItemHapDXTOutput.h -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/CMBlockBufferPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/CMBlockBufferPool.h -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/HapCodecSubTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/HapCodecSubTypes.h -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/HapDecoderFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/HapDecoderFrame.h -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/HapEncoderFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/HapEncoderFrame.h -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/HapInAVFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/HapInAVFoundation.h -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/HapPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/HapPlatform.h -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/PixelFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/PixelFormats.h -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/hap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Headers/hap.h -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /libs/Hap/lib/osx/HapInAVFoundation.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /src/ofxHAPAVPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/src/ofxHAPAVPlayer.h -------------------------------------------------------------------------------- /src/ofxHAPAVPlayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/src/ofxHAPAVPlayer.mm -------------------------------------------------------------------------------- /src/ofxHAPAVPlayerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/src/ofxHAPAVPlayerDelegate.h -------------------------------------------------------------------------------- /src/ofxHAPAVPlayerDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoverhack/ofxHAPAVPlayer/HEAD/src/ofxHAPAVPlayerDelegate.mm --------------------------------------------------------------------------------