├── README.md ├── intro.ipynb └── testFrameExtractor ├── FFmpeg-iOS ├── include │ ├── libavcodec │ │ ├── avcodec.h │ │ ├── avfft.h │ │ ├── dv_profile.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 │ │ ├── buffer.h │ │ ├── channel_layout.h │ │ ├── common.h │ │ ├── cpu.h │ │ ├── crc.h │ │ ├── dict.h │ │ ├── display.h │ │ ├── downmix_info.h │ │ ├── error.h │ │ ├── eval.h │ │ ├── ffversion.h │ │ ├── fifo.h │ │ ├── file.h │ │ ├── frame.h │ │ ├── hash.h │ │ ├── hmac.h │ │ ├── imgutils.h │ │ ├── intfloat.h │ │ ├── intfloat_readwrite.h │ │ ├── intreadwrite.h │ │ ├── lfg.h │ │ ├── log.h │ │ ├── lzo.h │ │ ├── macros.h │ │ ├── mathematics.h │ │ ├── md5.h │ │ ├── mem.h │ │ ├── motion_vector.h │ │ ├── murmur3.h │ │ ├── old_pix_fmts.h │ │ ├── opt.h │ │ ├── parseutils.h │ │ ├── pixdesc.h │ │ ├── pixelutils.h │ │ ├── pixfmt.h │ │ ├── random_seed.h │ │ ├── rational.h │ │ ├── replaygain.h │ │ ├── ripemd.h │ │ ├── samplefmt.h │ │ ├── sha.h │ │ ├── sha512.h │ │ ├── stereo3d.h │ │ ├── threadmessage.h │ │ ├── time.h │ │ ├── timecode.h │ │ ├── timestamp.h │ │ ├── version.h │ │ └── xtea.h │ ├── libswresample │ │ ├── swresample.h │ │ └── version.h │ └── libswscale │ │ ├── swscale.h │ │ └── version.h └── lib │ ├── libavcodec.a │ ├── libavdevice.a │ ├── libavfilter.a │ ├── libavformat.a │ ├── libavutil.a │ ├── libswresample.a │ └── libswscale.a ├── image3.png ├── testFrameExtractor.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── app.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── app.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── testFrameExtractor.xcscheme │ └── xcschememanagement.plist ├── testFrameExtractor ├── AAPLEAGLLayer.h ├── AAPLEAGLLayer.m ├── AppDelegate.h ├── AppDelegate.m ├── AudioStreamer.h ├── AudioStreamer.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── Shader.fsh ├── Shader.vsh ├── SuperVideoFrameExtractor.h ├── SuperVideoFrameExtractor.m ├── Utilities.h ├── Utilities.m ├── ViewController.h ├── ViewController.m └── main.m └── testFrameExtractorTests ├── Info.plist └── testFrameExtractorTests.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/README.md -------------------------------------------------------------------------------- /intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/intro.ipynb -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavcodec/old_codec_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavcodec/old_codec_ids.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavcodec/vda.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavcodec/version.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavdevice/version.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavfilter/asrc_abuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavfilter/asrc_abuffer.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavfilter/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavfilter/avcodec.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavfilter/avfiltergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavfilter/avfiltergraph.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavfilter/version.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavformat/avformat.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavformat/avio.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavformat/version.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/adler32.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/aes.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/attributes.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/audioconvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/audioconvert.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/avassert.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/avstring.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/avutil.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/base64.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/bprint.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/bswap.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/buffer.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/common.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/cpu.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/crc.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/dict.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/display.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/error.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/eval.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/fifo.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/file.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/frame.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/hash.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/hmac.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/intfloat_readwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/intfloat_readwrite.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/lfg.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/log.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/lzo.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/macros.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/md5.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/mem.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/old_pix_fmts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/old_pix_fmts.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/opt.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/rational.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/sha.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/sha512.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/time.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/timecode.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/version.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libavutil/xtea.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libswresample/swresample.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libswresample/version.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libswscale/swscale.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/include/libswscale/version.h -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/lib/libavcodec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/lib/libavcodec.a -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/lib/libavdevice.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/lib/libavdevice.a -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/lib/libavfilter.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/lib/libavfilter.a -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/lib/libavformat.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/lib/libavformat.a -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/lib/libavutil.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/lib/libavutil.a -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/lib/libswresample.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/lib/libswresample.a -------------------------------------------------------------------------------- /testFrameExtractor/FFmpeg-iOS/lib/libswscale.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/FFmpeg-iOS/lib/libswscale.a -------------------------------------------------------------------------------- /testFrameExtractor/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/image3.png -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor.xcodeproj/project.xcworkspace/xcuserdata/app.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor.xcodeproj/project.xcworkspace/xcuserdata/app.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor.xcodeproj/xcuserdata/app.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor.xcodeproj/xcuserdata/app.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor.xcodeproj/xcuserdata/app.xcuserdatad/xcschemes/testFrameExtractor.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor.xcodeproj/xcuserdata/app.xcuserdatad/xcschemes/testFrameExtractor.xcscheme -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor.xcodeproj/xcuserdata/app.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor.xcodeproj/xcuserdata/app.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/AAPLEAGLLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/AAPLEAGLLayer.h -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/AAPLEAGLLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/AAPLEAGLLayer.m -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/AppDelegate.h -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/AppDelegate.m -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/AudioStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/AudioStreamer.h -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/AudioStreamer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/AudioStreamer.m -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/Info.plist -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/Shader.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/Shader.fsh -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/Shader.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/Shader.vsh -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/SuperVideoFrameExtractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/SuperVideoFrameExtractor.h -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/SuperVideoFrameExtractor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/SuperVideoFrameExtractor.m -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/Utilities.h -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/Utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/Utilities.m -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/ViewController.h -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/ViewController.m -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractor/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractor/main.m -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractorTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractorTests/Info.plist -------------------------------------------------------------------------------- /testFrameExtractor/testFrameExtractorTests/testFrameExtractorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adison/-VideoToolboxDemo/HEAD/testFrameExtractor/testFrameExtractorTests/testFrameExtractorTests.m --------------------------------------------------------------------------------