├── .gitignore ├── Generative ├── Generative.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── andreasmuller.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── emptyExample Debug.xcscheme │ │ │ └── emptyExample Release.xcscheme │ └── xcuserdata │ │ └── andreasmuller.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── Fonts │ │ └── DIN.otf ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── HelloWorld ├── HelloWorld.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── andreasmuller.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── emptyExample Debug.xcscheme │ │ │ └── emptyExample Release.xcscheme │ └── xcuserdata │ │ └── andreasmuller.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ ├── HelloWorld.bin │ └── data │ │ └── DIN.otf ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── README.md ├── ShaderSimple ├── Makefile ├── Project.xcconfig ├── ShaderSimple.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── andreasmuller.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── emptyExample Debug.xcscheme │ │ │ └── emptyExample Release.xcscheme │ └── xcuserdata │ │ └── andreasmuller.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── addons.make ├── bin │ ├── ShaderSimple.bin │ └── data │ │ ├── .gitkeep │ │ ├── Fonts │ │ └── DIN.otf │ │ └── Shaders │ │ ├── ShaderDesktop.frag │ │ ├── ShaderDesktop.vert │ │ ├── ShaderGLES.frag │ │ └── ShaderGLES.vert ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── ofxAddons └── ofxOMXPlayer │ ├── libs │ └── ffmpeg │ │ ├── include │ │ ├── libavcodec │ │ │ ├── avcodec.h │ │ │ ├── avfft.h │ │ │ ├── dxva2.h │ │ │ ├── old_codec_ids.h │ │ │ ├── vaapi.h │ │ │ ├── vda.h │ │ │ ├── vdpau.h │ │ │ ├── version.h │ │ │ └── xvmc.h │ │ ├── libavdevice │ │ │ ├── avdevice.h │ │ │ └── version.h │ │ ├── libavfilter │ │ │ ├── asrc_abuffer.h │ │ │ ├── avcodec.h │ │ │ ├── avfilter.h │ │ │ ├── avfiltergraph.h │ │ │ ├── buffersink.h │ │ │ ├── buffersrc.h │ │ │ └── version.h │ │ ├── libavformat │ │ │ ├── avformat.h │ │ │ ├── avio.h │ │ │ └── version.h │ │ ├── libavutil │ │ │ ├── adler32.h │ │ │ ├── aes.h │ │ │ ├── attributes.h │ │ │ ├── audio_fifo.h │ │ │ ├── audioconvert.h │ │ │ ├── avassert.h │ │ │ ├── avconfig.h │ │ │ ├── avstring.h │ │ │ ├── avutil.h │ │ │ ├── base64.h │ │ │ ├── blowfish.h │ │ │ ├── bprint.h │ │ │ ├── bswap.h │ │ │ ├── channel_layout.h │ │ │ ├── common.h │ │ │ ├── cpu.h │ │ │ ├── crc.h │ │ │ ├── dict.h │ │ │ ├── error.h │ │ │ ├── eval.h │ │ │ ├── fifo.h │ │ │ ├── file.h │ │ │ ├── hmac.h │ │ │ ├── imgutils.h │ │ │ ├── intfloat.h │ │ │ ├── intfloat_readwrite.h │ │ │ ├── intreadwrite.h │ │ │ ├── lfg.h │ │ │ ├── log.h │ │ │ ├── lzo.h │ │ │ ├── mathematics.h │ │ │ ├── md5.h │ │ │ ├── mem.h │ │ │ ├── old_pix_fmts.h │ │ │ ├── opt.h │ │ │ ├── parseutils.h │ │ │ ├── pixdesc.h │ │ │ ├── pixfmt.h │ │ │ ├── random_seed.h │ │ │ ├── rational.h │ │ │ ├── samplefmt.h │ │ │ ├── sha.h │ │ │ ├── time.h │ │ │ ├── timecode.h │ │ │ ├── timestamp.h │ │ │ ├── version.h │ │ │ └── xtea.h │ │ ├── libpostproc │ │ │ ├── postprocess.h │ │ │ └── version.h │ │ ├── libswresample │ │ │ ├── swresample.h │ │ │ └── version.h │ │ └── libswscale │ │ │ ├── swscale.h │ │ │ └── version.h │ │ └── libs │ │ ├── libavcodec.a │ │ ├── libavdevice.a │ │ ├── libavfilter.a │ │ ├── libavformat.a │ │ ├── libavutil.a │ │ ├── libpostproc.a │ │ ├── libswresample.a │ │ └── libswscale.a │ └── src │ ├── BitstreamConverter.cpp │ ├── BitstreamConverter.h │ ├── COPYING │ ├── DllAvCodec.h │ ├── DllAvFilter.h │ ├── DllAvFormat.h │ ├── DllAvUtil.h │ ├── DllBCM.h │ ├── DllSwResample.h │ ├── DynamicDll.cpp │ ├── DynamicDll.h │ ├── File.cpp │ ├── File.h │ ├── GlobalEGLContainer.h │ ├── IAudioRenderer.h │ ├── OMXAudio.cpp │ ├── OMXAudio.h │ ├── OMXAudioCodecOMX.cpp │ ├── OMXAudioCodecOMX.h │ ├── OMXClock.cpp │ ├── OMXClock.h │ ├── OMXCore.cpp │ ├── OMXCore.h │ ├── OMXDecoderBase.cpp │ ├── OMXDecoderBase.h │ ├── OMXEGLImage.cpp │ ├── OMXEGLImage.h │ ├── OMXPlayerAudio.cpp │ ├── OMXPlayerAudio.h │ ├── OMXPlayerEGLImage.cpp │ ├── OMXPlayerEGLImage.h │ ├── OMXPlayerVideo.cpp │ ├── OMXPlayerVideo.h │ ├── OMXPlayerVideoBase.cpp │ ├── OMXPlayerVideoBase.h │ ├── OMXReader.cpp │ ├── OMXReader.h │ ├── OMXStreamInfo.cpp │ ├── OMXStreamInfo.h │ ├── OMXThread.cpp │ ├── OMXThread.h │ ├── OMXVideo.cpp │ ├── OMXVideo.h │ ├── linux │ ├── ConvUtils.h │ ├── PlatformDefs.h │ ├── PlatformInclude.h │ ├── XMemUtils.cpp │ ├── XMemUtils.h │ ├── XSyncUtils.h │ ├── stat_utf8.h │ └── stdio_utf8.h │ ├── ofxOMXPlayer.cpp │ ├── ofxOMXPlayer.h │ ├── ofxOMXPlayerEngine.cpp │ ├── ofxOMXPlayerEngine.h │ ├── ofxOMXPlayerListener.h │ └── utils │ ├── MathUtils.h │ ├── PCMRemap.cpp │ ├── PCMRemap.h │ └── StdString.h ├── omxPlayerNonTextured ├── .gitignore ├── Makefile ├── bin │ └── omxPlayerNonTextured.bin ├── config.make └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── omxPlayerShaders ├── .gitignore ├── Makefile ├── bin │ ├── data │ │ ├── .gitkeep │ │ ├── shaderExample.frag │ │ └── shaderExample.vert │ └── omxPlayerShaders.bin ├── config.make └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── omxPlayerTextured ├── .gitignore ├── Makefile ├── bin │ └── omxPlayerTextured.bin ├── config.make └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── opencvExample ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ ├── data │ │ ├── DIN.otf │ │ └── fingers.mp4 │ └── opencvExample.bin ├── config.make ├── openFrameworks-Info.plist ├── opencvExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── opencvExample Debug.xcscheme │ │ └── opencvExample Release.xcscheme └── src │ ├── ConsoleListener.h │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── ruttEtraExample ├── .gitignore ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ ├── data │ │ ├── .gitkeep │ │ ├── movies │ │ │ ├── fingers.mp4 │ │ │ └── fingers_160x120.mp4 │ │ ├── palettes │ │ │ ├── palette1.png │ │ │ ├── palette2.png │ │ │ ├── palette3.png │ │ │ ├── palette4.png │ │ │ ├── palette5.png │ │ │ ├── palette6.png │ │ │ ├── palette7.png │ │ │ ├── palette8.png │ │ │ └── palette9.png │ │ └── shaders │ │ │ ├── ColorFromHeight.frag │ │ │ ├── ColorFromHeight.vert │ │ │ ├── ColorFromHeightGLES.frag │ │ │ └── ColorFromHeightGLES.vert │ └── ruttEtraExample.bin ├── config.make ├── openFrameworks-Info.plist ├── ruttEtraExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── opencvExample Debug.xcscheme │ │ └── opencvExample Release.xcscheme └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h └── videos └── 720p.mov /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/.gitignore -------------------------------------------------------------------------------- /Generative/Generative.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/Generative/Generative.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Generative/Generative.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/Generative/Generative.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Generative/Generative.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/Generative/Generative.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Generative/Generative.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/Generative/Generative.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Generative/Generative.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/Generative/Generative.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /Generative/Generative.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/Generative/Generative.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /Generative/Generative.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/Generative/Generative.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Generative/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/Generative/Makefile -------------------------------------------------------------------------------- /Generative/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/Generative/Project.xcconfig -------------------------------------------------------------------------------- /Generative/addons.make: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Generative/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Generative/bin/data/Fonts/DIN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/Generative/bin/data/Fonts/DIN.otf -------------------------------------------------------------------------------- /Generative/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/Generative/config.make -------------------------------------------------------------------------------- /Generative/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/Generative/openFrameworks-Info.plist -------------------------------------------------------------------------------- /Generative/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/Generative/src/main.cpp -------------------------------------------------------------------------------- /Generative/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/Generative/src/testApp.cpp -------------------------------------------------------------------------------- /Generative/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/Generative/src/testApp.h -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/HelloWorld/HelloWorld.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/HelloWorld/HelloWorld.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/HelloWorld/HelloWorld.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/HelloWorld/HelloWorld.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HelloWorld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/HelloWorld/Makefile -------------------------------------------------------------------------------- /HelloWorld/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/HelloWorld/Project.xcconfig -------------------------------------------------------------------------------- /HelloWorld/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HelloWorld/bin/HelloWorld.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/HelloWorld/bin/HelloWorld.bin -------------------------------------------------------------------------------- /HelloWorld/bin/data/DIN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/HelloWorld/bin/data/DIN.otf -------------------------------------------------------------------------------- /HelloWorld/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/HelloWorld/config.make -------------------------------------------------------------------------------- /HelloWorld/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/HelloWorld/openFrameworks-Info.plist -------------------------------------------------------------------------------- /HelloWorld/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/HelloWorld/src/main.cpp -------------------------------------------------------------------------------- /HelloWorld/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/HelloWorld/src/testApp.cpp -------------------------------------------------------------------------------- /HelloWorld/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/HelloWorld/src/testApp.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/README.md -------------------------------------------------------------------------------- /ShaderSimple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/Makefile -------------------------------------------------------------------------------- /ShaderSimple/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/Project.xcconfig -------------------------------------------------------------------------------- /ShaderSimple/ShaderSimple.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/ShaderSimple.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ShaderSimple/ShaderSimple.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/ShaderSimple.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ShaderSimple/ShaderSimple.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/ShaderSimple.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ShaderSimple/ShaderSimple.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/ShaderSimple.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ShaderSimple/ShaderSimple.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/ShaderSimple.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /ShaderSimple/ShaderSimple.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/ShaderSimple.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /ShaderSimple/ShaderSimple.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/ShaderSimple.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ShaderSimple/addons.make: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ShaderSimple/bin/ShaderSimple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/bin/ShaderSimple.bin -------------------------------------------------------------------------------- /ShaderSimple/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShaderSimple/bin/data/Fonts/DIN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/bin/data/Fonts/DIN.otf -------------------------------------------------------------------------------- /ShaderSimple/bin/data/Shaders/ShaderDesktop.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/bin/data/Shaders/ShaderDesktop.frag -------------------------------------------------------------------------------- /ShaderSimple/bin/data/Shaders/ShaderDesktop.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/bin/data/Shaders/ShaderDesktop.vert -------------------------------------------------------------------------------- /ShaderSimple/bin/data/Shaders/ShaderGLES.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/bin/data/Shaders/ShaderGLES.frag -------------------------------------------------------------------------------- /ShaderSimple/bin/data/Shaders/ShaderGLES.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/bin/data/Shaders/ShaderGLES.vert -------------------------------------------------------------------------------- /ShaderSimple/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/config.make -------------------------------------------------------------------------------- /ShaderSimple/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/openFrameworks-Info.plist -------------------------------------------------------------------------------- /ShaderSimple/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/src/main.cpp -------------------------------------------------------------------------------- /ShaderSimple/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/src/testApp.cpp -------------------------------------------------------------------------------- /ShaderSimple/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ShaderSimple/src/testApp.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/old_codec_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/old_codec_ids.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/vda.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/version.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavdevice/version.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/asrc_abuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/asrc_abuffer.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/avcodec.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/avfiltergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/avfiltergraph.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavfilter/version.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavformat/avformat.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavformat/avio.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavformat/version.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/adler32.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/aes.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/attributes.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/audioconvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/audioconvert.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/avassert.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/avstring.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/avutil.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/base64.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/bprint.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/bswap.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/common.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/cpu.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/crc.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/dict.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/error.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/eval.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/fifo.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/file.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/hmac.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/intfloat_readwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/intfloat_readwrite.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/lfg.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/log.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/lzo.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/md5.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/mem.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/old_pix_fmts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/old_pix_fmts.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/opt.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/rational.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/sha.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/time.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/timecode.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/version.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libavutil/xtea.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libpostproc/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libpostproc/postprocess.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libpostproc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libpostproc/version.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libswresample/swresample.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libswresample/version.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libswscale/swscale.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/include/libswscale/version.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/libs/libavcodec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/libs/libavcodec.a -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/libs/libavdevice.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/libs/libavdevice.a -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/libs/libavfilter.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/libs/libavfilter.a -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/libs/libavformat.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/libs/libavformat.a -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/libs/libavutil.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/libs/libavutil.a -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/libs/libpostproc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/libs/libpostproc.a -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/libs/libswresample.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/libs/libswresample.a -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/libs/ffmpeg/libs/libswscale.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/libs/ffmpeg/libs/libswscale.a -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/BitstreamConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/BitstreamConverter.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/BitstreamConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/BitstreamConverter.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/COPYING -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/DllAvCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/DllAvCodec.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/DllAvFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/DllAvFilter.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/DllAvFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/DllAvFormat.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/DllAvUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/DllAvUtil.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/DllBCM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/DllBCM.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/DllSwResample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/DllSwResample.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/DynamicDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/DynamicDll.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/DynamicDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/DynamicDll.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/File.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/File.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/GlobalEGLContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/GlobalEGLContainer.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/IAudioRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/IAudioRenderer.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXAudio.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXAudio.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXAudioCodecOMX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXAudioCodecOMX.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXAudioCodecOMX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXAudioCodecOMX.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXClock.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXClock.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXCore.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXCore.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXDecoderBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXDecoderBase.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXDecoderBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXDecoderBase.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXEGLImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXEGLImage.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXEGLImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXEGLImage.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXPlayerAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXPlayerAudio.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXPlayerAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXPlayerAudio.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXPlayerEGLImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXPlayerEGLImage.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXPlayerEGLImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXPlayerEGLImage.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXPlayerVideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXPlayerVideo.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXPlayerVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXPlayerVideo.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXPlayerVideoBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXPlayerVideoBase.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXPlayerVideoBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXPlayerVideoBase.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXReader.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXReader.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXStreamInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXStreamInfo.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXStreamInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXStreamInfo.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXThread.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXThread.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXVideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXVideo.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/OMXVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/OMXVideo.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/linux/ConvUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/linux/ConvUtils.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/linux/PlatformDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/linux/PlatformDefs.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/linux/PlatformInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/linux/PlatformInclude.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/linux/XMemUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/linux/XMemUtils.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/linux/XMemUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/linux/XMemUtils.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/linux/XSyncUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/linux/XSyncUtils.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/linux/stat_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/linux/stat_utf8.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/linux/stdio_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/linux/stdio_utf8.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/ofxOMXPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/ofxOMXPlayer.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/ofxOMXPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/ofxOMXPlayer.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/ofxOMXPlayerEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/ofxOMXPlayerEngine.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/ofxOMXPlayerEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/ofxOMXPlayerEngine.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/ofxOMXPlayerListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/ofxOMXPlayerListener.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/utils/MathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/utils/MathUtils.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/utils/PCMRemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/utils/PCMRemap.cpp -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/utils/PCMRemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/utils/PCMRemap.h -------------------------------------------------------------------------------- /ofxAddons/ofxOMXPlayer/src/utils/StdString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ofxAddons/ofxOMXPlayer/src/utils/StdString.h -------------------------------------------------------------------------------- /omxPlayerNonTextured/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerNonTextured/.gitignore -------------------------------------------------------------------------------- /omxPlayerNonTextured/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerNonTextured/Makefile -------------------------------------------------------------------------------- /omxPlayerNonTextured/bin/omxPlayerNonTextured.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerNonTextured/bin/omxPlayerNonTextured.bin -------------------------------------------------------------------------------- /omxPlayerNonTextured/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerNonTextured/config.make -------------------------------------------------------------------------------- /omxPlayerNonTextured/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerNonTextured/src/main.cpp -------------------------------------------------------------------------------- /omxPlayerNonTextured/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerNonTextured/src/testApp.cpp -------------------------------------------------------------------------------- /omxPlayerNonTextured/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerNonTextured/src/testApp.h -------------------------------------------------------------------------------- /omxPlayerShaders/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerShaders/.gitignore -------------------------------------------------------------------------------- /omxPlayerShaders/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerShaders/Makefile -------------------------------------------------------------------------------- /omxPlayerShaders/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omxPlayerShaders/bin/data/shaderExample.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerShaders/bin/data/shaderExample.frag -------------------------------------------------------------------------------- /omxPlayerShaders/bin/data/shaderExample.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerShaders/bin/data/shaderExample.vert -------------------------------------------------------------------------------- /omxPlayerShaders/bin/omxPlayerShaders.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerShaders/bin/omxPlayerShaders.bin -------------------------------------------------------------------------------- /omxPlayerShaders/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerShaders/config.make -------------------------------------------------------------------------------- /omxPlayerShaders/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerShaders/src/main.cpp -------------------------------------------------------------------------------- /omxPlayerShaders/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerShaders/src/testApp.cpp -------------------------------------------------------------------------------- /omxPlayerShaders/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerShaders/src/testApp.h -------------------------------------------------------------------------------- /omxPlayerTextured/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerTextured/.gitignore -------------------------------------------------------------------------------- /omxPlayerTextured/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerTextured/Makefile -------------------------------------------------------------------------------- /omxPlayerTextured/bin/omxPlayerTextured.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerTextured/bin/omxPlayerTextured.bin -------------------------------------------------------------------------------- /omxPlayerTextured/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerTextured/config.make -------------------------------------------------------------------------------- /omxPlayerTextured/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerTextured/src/main.cpp -------------------------------------------------------------------------------- /omxPlayerTextured/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerTextured/src/testApp.cpp -------------------------------------------------------------------------------- /omxPlayerTextured/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/omxPlayerTextured/src/testApp.h -------------------------------------------------------------------------------- /opencvExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/opencvExample/Makefile -------------------------------------------------------------------------------- /opencvExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/opencvExample/Project.xcconfig -------------------------------------------------------------------------------- /opencvExample/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/opencvExample/addons.make -------------------------------------------------------------------------------- /opencvExample/bin/data/DIN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/opencvExample/bin/data/DIN.otf -------------------------------------------------------------------------------- /opencvExample/bin/data/fingers.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/opencvExample/bin/data/fingers.mp4 -------------------------------------------------------------------------------- /opencvExample/bin/opencvExample.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/opencvExample/bin/opencvExample.bin -------------------------------------------------------------------------------- /opencvExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/opencvExample/config.make -------------------------------------------------------------------------------- /opencvExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/opencvExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /opencvExample/opencvExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/opencvExample/opencvExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /opencvExample/opencvExample.xcodeproj/xcshareddata/xcschemes/opencvExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/opencvExample/opencvExample.xcodeproj/xcshareddata/xcschemes/opencvExample Debug.xcscheme -------------------------------------------------------------------------------- /opencvExample/opencvExample.xcodeproj/xcshareddata/xcschemes/opencvExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/opencvExample/opencvExample.xcodeproj/xcshareddata/xcschemes/opencvExample Release.xcscheme -------------------------------------------------------------------------------- /opencvExample/src/ConsoleListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/opencvExample/src/ConsoleListener.h -------------------------------------------------------------------------------- /opencvExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/opencvExample/src/main.cpp -------------------------------------------------------------------------------- /opencvExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/opencvExample/src/ofApp.cpp -------------------------------------------------------------------------------- /opencvExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/opencvExample/src/ofApp.h -------------------------------------------------------------------------------- /ruttEtraExample/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ruttEtraExample 2 | -------------------------------------------------------------------------------- /ruttEtraExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/Makefile -------------------------------------------------------------------------------- /ruttEtraExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/Project.xcconfig -------------------------------------------------------------------------------- /ruttEtraExample/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/addons.make -------------------------------------------------------------------------------- /ruttEtraExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ruttEtraExample/bin/data/movies/fingers.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/bin/data/movies/fingers.mp4 -------------------------------------------------------------------------------- /ruttEtraExample/bin/data/movies/fingers_160x120.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/bin/data/movies/fingers_160x120.mp4 -------------------------------------------------------------------------------- /ruttEtraExample/bin/data/palettes/palette1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/bin/data/palettes/palette1.png -------------------------------------------------------------------------------- /ruttEtraExample/bin/data/palettes/palette2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/bin/data/palettes/palette2.png -------------------------------------------------------------------------------- /ruttEtraExample/bin/data/palettes/palette3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/bin/data/palettes/palette3.png -------------------------------------------------------------------------------- /ruttEtraExample/bin/data/palettes/palette4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/bin/data/palettes/palette4.png -------------------------------------------------------------------------------- /ruttEtraExample/bin/data/palettes/palette5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/bin/data/palettes/palette5.png -------------------------------------------------------------------------------- /ruttEtraExample/bin/data/palettes/palette6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/bin/data/palettes/palette6.png -------------------------------------------------------------------------------- /ruttEtraExample/bin/data/palettes/palette7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/bin/data/palettes/palette7.png -------------------------------------------------------------------------------- /ruttEtraExample/bin/data/palettes/palette8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/bin/data/palettes/palette8.png -------------------------------------------------------------------------------- /ruttEtraExample/bin/data/palettes/palette9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/bin/data/palettes/palette9.png -------------------------------------------------------------------------------- /ruttEtraExample/bin/data/shaders/ColorFromHeight.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/bin/data/shaders/ColorFromHeight.frag -------------------------------------------------------------------------------- /ruttEtraExample/bin/data/shaders/ColorFromHeight.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/bin/data/shaders/ColorFromHeight.vert -------------------------------------------------------------------------------- /ruttEtraExample/bin/data/shaders/ColorFromHeightGLES.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/bin/data/shaders/ColorFromHeightGLES.frag -------------------------------------------------------------------------------- /ruttEtraExample/bin/data/shaders/ColorFromHeightGLES.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/bin/data/shaders/ColorFromHeightGLES.vert -------------------------------------------------------------------------------- /ruttEtraExample/bin/ruttEtraExample.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/bin/ruttEtraExample.bin -------------------------------------------------------------------------------- /ruttEtraExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/config.make -------------------------------------------------------------------------------- /ruttEtraExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /ruttEtraExample/ruttEtraExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/ruttEtraExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ruttEtraExample/ruttEtraExample.xcodeproj/xcshareddata/xcschemes/opencvExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/ruttEtraExample.xcodeproj/xcshareddata/xcschemes/opencvExample Debug.xcscheme -------------------------------------------------------------------------------- /ruttEtraExample/ruttEtraExample.xcodeproj/xcshareddata/xcschemes/opencvExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/ruttEtraExample.xcodeproj/xcshareddata/xcschemes/opencvExample Release.xcscheme -------------------------------------------------------------------------------- /ruttEtraExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/src/main.cpp -------------------------------------------------------------------------------- /ruttEtraExample/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/src/testApp.cpp -------------------------------------------------------------------------------- /ruttEtraExample/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/ruttEtraExample/src/testApp.h -------------------------------------------------------------------------------- /videos/720p.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openFrameworks-arm/RaspberryPiGuideCAN/HEAD/videos/720p.mov --------------------------------------------------------------------------------