| 1 | Currently pjmedia allows selection of audio backend via build settings (the PJMEDIA_SOUND_IMPLEMENTATION macro), and with this setting one can select either of this backend implementation: |
| 2 | * !PortAudio (the default) |
| 3 | * !DirectSound (deprecated) |
| 4 | * Null device (just to let the build process go through). |
| 5 | |
| 6 | This implies that new sound backend implementation must create a new configuration macro, which is not ideal since it requires modification to the source. |
| 7 | |
| 8 | With the "external" option, no sound device backend will be provided in pjmedia library, so this would enable application to provide it's own sound device backend implementation (by just linking the application with the implementation). |
| 9 | |