summaryrefslogtreecommitdiff
path: root/orkbasecxx/AudioCapture.h
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2006-12-28 16:37:45 +0000
committerHenri Herscher <henri@oreka.org>2006-12-28 16:37:45 +0000
commit53907f2d9156e7a0a2644f04f7eb507a2a48e9aa (patch)
treea1f657abe2b3d6a40491028e352b8e60471161a1 /orkbasecxx/AudioCapture.h
parent320f2a9dd5fd59b09e1977aa1f9344e219bf3d1a (diff)
SIP Session metadata can now be updated when a new RTP stream is seen that matches one of the INVITE messages associated with the session. When this happens, a new tape message with stage=update is generated with the updated metadata.
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@381 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkbasecxx/AudioCapture.h')
-rw-r--r--orkbasecxx/AudioCapture.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/orkbasecxx/AudioCapture.h b/orkbasecxx/AudioCapture.h
index 52485c7..8a02e1c 100644
--- a/orkbasecxx/AudioCapture.h
+++ b/orkbasecxx/AudioCapture.h
@@ -127,6 +127,7 @@ public:
#define ET_ORKUID "orkuid"
#define ET_ENDMETADATA "endmetadata"
#define ET_READY "ready"
+#define ET_UPDATE "update"
#define ET_INVALID "invalid"
typedef enum
{
@@ -145,7 +146,8 @@ public:
EtOrkUid = 12,
EtEndMetadata = 13,
EtReady = 14,
- EtInvalid = 15
+ EtUpdate = 15,
+ EtInvalid = 16
} EventTypeEnum;
static CStdString EventTypeToString(int eventTypeEnum);
static int EventTypeToEnum(CStdString&);