├── .appveyor.yml ├── .github └── workflows │ └── action.yml ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── AUTHORS ├── COPYING ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── doc ├── Doxyfile.in ├── Makefile └── opus_logo.svg ├── examples └── opusenc_example.c ├── include └── opusenc.h ├── libopusenc-uninstalled.pc.in ├── libopusenc.pc.in ├── m4 └── attributes.m4 ├── src ├── arch.h ├── ogg_packer.c ├── ogg_packer.h ├── opus_header.c ├── opus_header.h ├── opusenc.c ├── picture.c ├── picture.h ├── resample.c ├── resample_sse.h ├── speex_resampler.h ├── unicode_support.c └── unicode_support.h ├── update_version └── win32 ├── .gitignore ├── VS2015 ├── common.props ├── opusenc.sln ├── opusenc.vcxproj └── opusenc.vcxproj.filters ├── config.h └── genversion.bat /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.github/workflows/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/.github/workflows/action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/opus_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/doc/opus_logo.svg -------------------------------------------------------------------------------- /examples/opusenc_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/examples/opusenc_example.c -------------------------------------------------------------------------------- /include/opusenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/include/opusenc.h -------------------------------------------------------------------------------- /libopusenc-uninstalled.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/libopusenc-uninstalled.pc.in -------------------------------------------------------------------------------- /libopusenc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/libopusenc.pc.in -------------------------------------------------------------------------------- /m4/attributes.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/m4/attributes.m4 -------------------------------------------------------------------------------- /src/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/src/arch.h -------------------------------------------------------------------------------- /src/ogg_packer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/src/ogg_packer.c -------------------------------------------------------------------------------- /src/ogg_packer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/src/ogg_packer.h -------------------------------------------------------------------------------- /src/opus_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/src/opus_header.c -------------------------------------------------------------------------------- /src/opus_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/src/opus_header.h -------------------------------------------------------------------------------- /src/opusenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/src/opusenc.c -------------------------------------------------------------------------------- /src/picture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/src/picture.c -------------------------------------------------------------------------------- /src/picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/src/picture.h -------------------------------------------------------------------------------- /src/resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/src/resample.c -------------------------------------------------------------------------------- /src/resample_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/src/resample_sse.h -------------------------------------------------------------------------------- /src/speex_resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/src/speex_resampler.h -------------------------------------------------------------------------------- /src/unicode_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/src/unicode_support.c -------------------------------------------------------------------------------- /src/unicode_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/src/unicode_support.h -------------------------------------------------------------------------------- /update_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/update_version -------------------------------------------------------------------------------- /win32/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/win32/.gitignore -------------------------------------------------------------------------------- /win32/VS2015/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/win32/VS2015/common.props -------------------------------------------------------------------------------- /win32/VS2015/opusenc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/win32/VS2015/opusenc.sln -------------------------------------------------------------------------------- /win32/VS2015/opusenc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/win32/VS2015/opusenc.vcxproj -------------------------------------------------------------------------------- /win32/VS2015/opusenc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/win32/VS2015/opusenc.vcxproj.filters -------------------------------------------------------------------------------- /win32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/win32/config.h -------------------------------------------------------------------------------- /win32/genversion.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/libopusenc/HEAD/win32/genversion.bat --------------------------------------------------------------------------------