├── .gitignore ├── .gitmodules ├── .travis.yml ├── Code ├── CCBufferedImageDecoder.h ├── CCBufferedImageDecoder.m ├── CCBufferedImageView+Contentful.swift ├── CCBufferedImageView.swift ├── Concorde.h └── Info.plist ├── Concorde.podspec ├── Concorde.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ ├── xcbaselines │ └── A1441E391AADD59100973761.xcbaseline │ │ ├── AC88F414-26CC-4892-A099-3F87575F1598.plist │ │ └── Info.plist │ └── xcschemes │ ├── Concorde.xcscheme │ └── Example.xcscheme ├── Concorde.xcworkspace └── contents.xcworkspacedata ├── Example ├── AppDelegate.swift └── Info.plist ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Makefile ├── Podfile ├── Podfile.lock ├── README.md ├── Tests ├── ConcordeTests.swift ├── Info.plist ├── PerformanceTests.swift ├── crash.jpg ├── non-progressive.jpg └── progressive.jpg ├── use.gif └── vendor └── libjpeg-turbo ├── include ├── jconfig.h ├── jerror.h ├── jmorecfg.h ├── jpeglib.h └── turbojpeg.h └── lib └── libturbojpeg.a /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/.travis.yml -------------------------------------------------------------------------------- /Code/CCBufferedImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Code/CCBufferedImageDecoder.h -------------------------------------------------------------------------------- /Code/CCBufferedImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Code/CCBufferedImageDecoder.m -------------------------------------------------------------------------------- /Code/CCBufferedImageView+Contentful.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Code/CCBufferedImageView+Contentful.swift -------------------------------------------------------------------------------- /Code/CCBufferedImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Code/CCBufferedImageView.swift -------------------------------------------------------------------------------- /Code/Concorde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Code/Concorde.h -------------------------------------------------------------------------------- /Code/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Code/Info.plist -------------------------------------------------------------------------------- /Concorde.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Concorde.podspec -------------------------------------------------------------------------------- /Concorde.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Concorde.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Concorde.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Concorde.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Concorde.xcodeproj/xcshareddata/xcbaselines/A1441E391AADD59100973761.xcbaseline/AC88F414-26CC-4892-A099-3F87575F1598.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Concorde.xcodeproj/xcshareddata/xcbaselines/A1441E391AADD59100973761.xcbaseline/AC88F414-26CC-4892-A099-3F87575F1598.plist -------------------------------------------------------------------------------- /Concorde.xcodeproj/xcshareddata/xcbaselines/A1441E391AADD59100973761.xcbaseline/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Concorde.xcodeproj/xcshareddata/xcbaselines/A1441E391AADD59100973761.xcbaseline/Info.plist -------------------------------------------------------------------------------- /Concorde.xcodeproj/xcshareddata/xcschemes/Concorde.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Concorde.xcodeproj/xcshareddata/xcschemes/Concorde.xcscheme -------------------------------------------------------------------------------- /Concorde.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Concorde.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Concorde.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Concorde.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Example/Info.plist -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Makefile -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/README.md -------------------------------------------------------------------------------- /Tests/ConcordeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Tests/ConcordeTests.swift -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/PerformanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Tests/PerformanceTests.swift -------------------------------------------------------------------------------- /Tests/crash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Tests/crash.jpg -------------------------------------------------------------------------------- /Tests/non-progressive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Tests/non-progressive.jpg -------------------------------------------------------------------------------- /Tests/progressive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/Tests/progressive.jpg -------------------------------------------------------------------------------- /use.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/use.gif -------------------------------------------------------------------------------- /vendor/libjpeg-turbo/include/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/vendor/libjpeg-turbo/include/jconfig.h -------------------------------------------------------------------------------- /vendor/libjpeg-turbo/include/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/vendor/libjpeg-turbo/include/jerror.h -------------------------------------------------------------------------------- /vendor/libjpeg-turbo/include/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/vendor/libjpeg-turbo/include/jmorecfg.h -------------------------------------------------------------------------------- /vendor/libjpeg-turbo/include/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/vendor/libjpeg-turbo/include/jpeglib.h -------------------------------------------------------------------------------- /vendor/libjpeg-turbo/include/turbojpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/vendor/libjpeg-turbo/include/turbojpeg.h -------------------------------------------------------------------------------- /vendor/libjpeg-turbo/lib/libturbojpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-labs/Concorde/HEAD/vendor/libjpeg-turbo/lib/libturbojpeg.a --------------------------------------------------------------------------------