summaryrefslogtreecommitdiff
path: root/pjmedia/include
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-01-11 08:22:57 +0000
committerBenny Prijono <bennylp@teluu.com>2008-01-11 08:22:57 +0000
commit74979b76df1d1ab40cc3c0d5fc3e5ac95ab357b6 (patch)
tree53f690d5c8ac3901f41bc4beddce9e09c4e94fca /pjmedia/include
parent8162fc4547f022217c84a8b01dacc0abdec40f12 (diff)
Ticket #444: Bug in tone generator: can't play more digits (thanks Marian Dragomir)
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1676 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjmedia/include')
-rw-r--r--pjmedia/include/pjmedia/tonegen.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/pjmedia/include/pjmedia/tonegen.h b/pjmedia/include/pjmedia/tonegen.h
index 41e49784..dadc036d 100644
--- a/pjmedia/include/pjmedia/tonegen.h
+++ b/pjmedia/include/pjmedia/tonegen.h
@@ -107,7 +107,12 @@ enum
* Play the tones in loop, restarting playing the first tone after
* the last tone has been played.
*/
- PJMEDIA_TONEGEN_LOOP = 1
+ PJMEDIA_TONEGEN_LOOP = 1,
+
+ /**
+ * Disable mutex protection to the tone generator.
+ */
+ PJMEDIA_TONEGEN_NO_LOCK = 2
};