├── .gitignore ├── CHANGELOG.md ├── README.md ├── bcg729-build ├── config.conf ├── openh264-build-target-archs ├── openssl-build-target-archs ├── opus-build ├── patches ├── export_rtcp_fb │ ├── patch.sh │ └── rtcpfb.patch ├── fix_missing_contact_header_on_incall_ip_change │ ├── fix_missing_contact_header.patch │ └── patch.sh └── fixed_callid │ ├── README.md │ ├── callid.old.patch │ ├── callid.patch │ └── patch.sh └── prepare-build-system /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiSmart/pjsip-android-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiSmart/pjsip-android-builder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiSmart/pjsip-android-builder/HEAD/README.md -------------------------------------------------------------------------------- /bcg729-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiSmart/pjsip-android-builder/HEAD/bcg729-build -------------------------------------------------------------------------------- /config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiSmart/pjsip-android-builder/HEAD/config.conf -------------------------------------------------------------------------------- /openh264-build-target-archs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiSmart/pjsip-android-builder/HEAD/openh264-build-target-archs -------------------------------------------------------------------------------- /openssl-build-target-archs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiSmart/pjsip-android-builder/HEAD/openssl-build-target-archs -------------------------------------------------------------------------------- /opus-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiSmart/pjsip-android-builder/HEAD/opus-build -------------------------------------------------------------------------------- /patches/export_rtcp_fb/patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiSmart/pjsip-android-builder/HEAD/patches/export_rtcp_fb/patch.sh -------------------------------------------------------------------------------- /patches/export_rtcp_fb/rtcpfb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiSmart/pjsip-android-builder/HEAD/patches/export_rtcp_fb/rtcpfb.patch -------------------------------------------------------------------------------- /patches/fix_missing_contact_header_on_incall_ip_change/fix_missing_contact_header.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiSmart/pjsip-android-builder/HEAD/patches/fix_missing_contact_header_on_incall_ip_change/fix_missing_contact_header.patch -------------------------------------------------------------------------------- /patches/fix_missing_contact_header_on_incall_ip_change/patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiSmart/pjsip-android-builder/HEAD/patches/fix_missing_contact_header_on_incall_ip_change/patch.sh -------------------------------------------------------------------------------- /patches/fixed_callid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiSmart/pjsip-android-builder/HEAD/patches/fixed_callid/README.md -------------------------------------------------------------------------------- /patches/fixed_callid/callid.old.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiSmart/pjsip-android-builder/HEAD/patches/fixed_callid/callid.old.patch -------------------------------------------------------------------------------- /patches/fixed_callid/callid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiSmart/pjsip-android-builder/HEAD/patches/fixed_callid/callid.patch -------------------------------------------------------------------------------- /patches/fixed_callid/patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiSmart/pjsip-android-builder/HEAD/patches/fixed_callid/patch.sh -------------------------------------------------------------------------------- /prepare-build-system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiSmart/pjsip-android-builder/HEAD/prepare-build-system --------------------------------------------------------------------------------