Replaced gsm module with codec2 module
This commit is contained in:
@ -32,9 +32,9 @@ add_library(lib_g729 STATIC IMPORTED)
|
||||
set_target_properties(lib_g729 PROPERTIES IMPORTED_LOCATION
|
||||
${distribution_DIR}/g729/lib/${ANDROID_ABI}/libbcg729.a)
|
||||
|
||||
add_library(lib_gsm STATIC IMPORTED)
|
||||
set_target_properties(lib_gsm PROPERTIES IMPORTED_LOCATION
|
||||
${distribution_DIR}/gsm/lib/${ANDROID_ABI}/libgsm.a)
|
||||
add_library(lib_codec2 STATIC IMPORTED)
|
||||
set_target_properties(lib_codec2 PROPERTIES IMPORTED_LOCATION
|
||||
${distribution_DIR}/codec2/lib/${ANDROID_ABI}/libcodec2.a)
|
||||
|
||||
add_library(lib_amrnb STATIC IMPORTED)
|
||||
set_target_properties(lib_amrnb PROPERTIES IMPORTED_LOCATION
|
||||
@ -84,7 +84,7 @@ target_link_libraries(baresip
|
||||
lib_spandsp
|
||||
lib_g722_1
|
||||
lib_g729
|
||||
lib_gsm
|
||||
lib_codec2
|
||||
lib_amrnb
|
||||
lib_amrwb
|
||||
lib_amrwbenc
|
||||
|
||||
@ -329,7 +329,7 @@ class AudioActivity : AppCompatActivity() {
|
||||
}
|
||||
|
||||
companion object {
|
||||
val audioModules = listOf("opus", "amr", "g722", "g7221", "g726", "g729", "gsm", "g711")
|
||||
val audioModules = listOf("opus", "amr", "g722", "g7221", "g726", "g729", "codec2", "g711")
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user