├── .travis.yml ├── FLAC.framework ├── FLAC └── Headers │ ├── all.h │ ├── assert.h │ ├── callback.h │ ├── export.h │ ├── format.h │ ├── metadata.h │ ├── ordinals.h │ ├── stream_decoder.h │ └── stream_encoder.h ├── README.md ├── flac_build.bash ├── list.bash └── travis_build /.travis.yml: -------------------------------------------------------------------------------- 1 | language: objective-c 2 | 3 | script: 4 | - ./travis_build 5 | -------------------------------------------------------------------------------- /FLAC.framework/FLAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosdevzone/IDZPrecompiledFLAC/HEAD/FLAC.framework/FLAC -------------------------------------------------------------------------------- /FLAC.framework/Headers/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosdevzone/IDZPrecompiledFLAC/HEAD/FLAC.framework/Headers/all.h -------------------------------------------------------------------------------- /FLAC.framework/Headers/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosdevzone/IDZPrecompiledFLAC/HEAD/FLAC.framework/Headers/assert.h -------------------------------------------------------------------------------- /FLAC.framework/Headers/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosdevzone/IDZPrecompiledFLAC/HEAD/FLAC.framework/Headers/callback.h -------------------------------------------------------------------------------- /FLAC.framework/Headers/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosdevzone/IDZPrecompiledFLAC/HEAD/FLAC.framework/Headers/export.h -------------------------------------------------------------------------------- /FLAC.framework/Headers/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosdevzone/IDZPrecompiledFLAC/HEAD/FLAC.framework/Headers/format.h -------------------------------------------------------------------------------- /FLAC.framework/Headers/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosdevzone/IDZPrecompiledFLAC/HEAD/FLAC.framework/Headers/metadata.h -------------------------------------------------------------------------------- /FLAC.framework/Headers/ordinals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosdevzone/IDZPrecompiledFLAC/HEAD/FLAC.framework/Headers/ordinals.h -------------------------------------------------------------------------------- /FLAC.framework/Headers/stream_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosdevzone/IDZPrecompiledFLAC/HEAD/FLAC.framework/Headers/stream_decoder.h -------------------------------------------------------------------------------- /FLAC.framework/Headers/stream_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosdevzone/IDZPrecompiledFLAC/HEAD/FLAC.framework/Headers/stream_encoder.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosdevzone/IDZPrecompiledFLAC/HEAD/README.md -------------------------------------------------------------------------------- /flac_build.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosdevzone/IDZPrecompiledFLAC/HEAD/flac_build.bash -------------------------------------------------------------------------------- /list.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosdevzone/IDZPrecompiledFLAC/HEAD/list.bash -------------------------------------------------------------------------------- /travis_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iosdevzone/IDZPrecompiledFLAC/HEAD/travis_build --------------------------------------------------------------------------------