├── LICENSE ├── Makefile ├── README.md ├── asterisk.patch ├── codecs ├── codec_opus_open_source.c └── ex_opus.h ├── enable_native_plc.patch ├── formats ├── format_ogg_opus_open_source.c └── format_vp8.c ├── include └── asterisk │ └── opus.h └── res └── res_format_attr_opus.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traud/asterisk-opus/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traud/asterisk-opus/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traud/asterisk-opus/HEAD/README.md -------------------------------------------------------------------------------- /asterisk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traud/asterisk-opus/HEAD/asterisk.patch -------------------------------------------------------------------------------- /codecs/codec_opus_open_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traud/asterisk-opus/HEAD/codecs/codec_opus_open_source.c -------------------------------------------------------------------------------- /codecs/ex_opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traud/asterisk-opus/HEAD/codecs/ex_opus.h -------------------------------------------------------------------------------- /enable_native_plc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traud/asterisk-opus/HEAD/enable_native_plc.patch -------------------------------------------------------------------------------- /formats/format_ogg_opus_open_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traud/asterisk-opus/HEAD/formats/format_ogg_opus_open_source.c -------------------------------------------------------------------------------- /formats/format_vp8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traud/asterisk-opus/HEAD/formats/format_vp8.c -------------------------------------------------------------------------------- /include/asterisk/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traud/asterisk-opus/HEAD/include/asterisk/opus.h -------------------------------------------------------------------------------- /res/res_format_attr_opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traud/asterisk-opus/HEAD/res/res_format_attr_opus.c --------------------------------------------------------------------------------