├── .github └── workflows │ └── build.yml ├── .gitlab-ci.yml ├── .travis.yml ├── AUTHORS ├── Brewfile ├── CMakeLists.txt ├── COPYING ├── Makefile.am ├── README.md ├── autogen.sh ├── ci ├── autotools.sh └── unix.sh ├── cmake ├── FindOgg.cmake ├── FindOpus.cmake ├── OpusFileConfig.cmake.in └── OpusFilePackageVersion.cmake ├── configure.ac ├── doc ├── Doxyfile.in ├── Makefile ├── opus_logo.svg └── release.md ├── examples ├── opusfile_example.c ├── seeking_example.c ├── win32utf8.c └── win32utf8.h ├── include └── opusfile.h ├── m4 └── attributes.m4 ├── mingw ├── Dockerfile ├── Makefile └── README.md ├── opusfile-uninstalled.pc.in ├── opusfile.pc.in ├── opusurl-uninstalled.pc.in ├── opusurl.pc.in ├── releases.sha2 ├── src ├── http.c ├── info.c ├── internal.c ├── internal.h ├── opusfile.c ├── stream.c ├── wincerts.c └── winerrno.h └── unix └── Makefile /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/AUTHORS -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/Brewfile -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/autogen.sh -------------------------------------------------------------------------------- /ci/autotools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/ci/autotools.sh -------------------------------------------------------------------------------- /ci/unix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/ci/unix.sh -------------------------------------------------------------------------------- /cmake/FindOgg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/cmake/FindOgg.cmake -------------------------------------------------------------------------------- /cmake/FindOpus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/cmake/FindOpus.cmake -------------------------------------------------------------------------------- /cmake/OpusFileConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/cmake/OpusFileConfig.cmake.in -------------------------------------------------------------------------------- /cmake/OpusFilePackageVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/cmake/OpusFilePackageVersion.cmake -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/opus_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/doc/opus_logo.svg -------------------------------------------------------------------------------- /doc/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/doc/release.md -------------------------------------------------------------------------------- /examples/opusfile_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/examples/opusfile_example.c -------------------------------------------------------------------------------- /examples/seeking_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/examples/seeking_example.c -------------------------------------------------------------------------------- /examples/win32utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/examples/win32utf8.c -------------------------------------------------------------------------------- /examples/win32utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/examples/win32utf8.h -------------------------------------------------------------------------------- /include/opusfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/include/opusfile.h -------------------------------------------------------------------------------- /m4/attributes.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/m4/attributes.m4 -------------------------------------------------------------------------------- /mingw/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/mingw/Dockerfile -------------------------------------------------------------------------------- /mingw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/mingw/Makefile -------------------------------------------------------------------------------- /mingw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/mingw/README.md -------------------------------------------------------------------------------- /opusfile-uninstalled.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/opusfile-uninstalled.pc.in -------------------------------------------------------------------------------- /opusfile.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/opusfile.pc.in -------------------------------------------------------------------------------- /opusurl-uninstalled.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/opusurl-uninstalled.pc.in -------------------------------------------------------------------------------- /opusurl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/opusurl.pc.in -------------------------------------------------------------------------------- /releases.sha2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/releases.sha2 -------------------------------------------------------------------------------- /src/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/src/http.c -------------------------------------------------------------------------------- /src/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/src/info.c -------------------------------------------------------------------------------- /src/internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/src/internal.c -------------------------------------------------------------------------------- /src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/src/internal.h -------------------------------------------------------------------------------- /src/opusfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/src/opusfile.c -------------------------------------------------------------------------------- /src/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/src/stream.c -------------------------------------------------------------------------------- /src/wincerts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/src/wincerts.c -------------------------------------------------------------------------------- /src/winerrno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/src/winerrno.h -------------------------------------------------------------------------------- /unix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/opusfile/HEAD/unix/Makefile --------------------------------------------------------------------------------