summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlfred E. Heggestad <alfred.heggestad@gmail.com>2017-11-16 17:47:14 +0100
committerAlfred E. Heggestad <alfred.heggestad@gmail.com>2017-11-16 17:47:14 +0100
commit4bb5b36a21978a304062058d695d5ff410ca43a1 (patch)
treec18778fc197a47c2e37080ef1af9cf40abd8d493 /include
parent5eeadba9af3e03abf0af046fb20b64f3f7393658 (diff)
audio: remove support for tx realtime thread
- there is no need to run this thread in "realtime" mode, as the network will add much more jitter compared to an internal thread. (Setting a high thread priority may be a different option) the only modules that needs Real-time is the drivers close to I/O such as audio/video input/output drivers.
Diffstat (limited to 'include')
-rw-r--r--include/baresip.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/baresip.h b/include/baresip.h
index a59c676..44cce65 100644
--- a/include/baresip.h
+++ b/include/baresip.h
@@ -167,7 +167,6 @@ static inline bool in_range(const struct range *rng, uint32_t val)
enum audio_mode {
AUDIO_MODE_POLL = 0, /**< Polling mode */
AUDIO_MODE_THREAD, /**< Use dedicated thread */
- AUDIO_MODE_THREAD_REALTIME, /**< Use dedicated realtime-thread */
AUDIO_MODE_TMR /**< Use timer */
};