From: Michael Jerris Date: Wed, 5 May 2010 21:05:16 +0000 (-0400) Subject: fix enum X-Git-Tag: git2svn-syncpoint-master~101 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1180cfc6ff2fca43515a121c6fea901ad9216a7c;p=thirdparty%2Ffreeswitch.git fix enum --- diff --git a/src/include/private/switch_core_pvt.h b/src/include/private/switch_core_pvt.h index 12fd3209c6..882c3c331a 100644 --- a/src/include/private/switch_core_pvt.h +++ b/src/include/private/switch_core_pvt.h @@ -94,7 +94,11 @@ typedef enum { SSF_WARN_TRANSCODE = (1 << 1), SSF_HANGUP = (1 << 2), SSF_THREAD_STARTED = (1 << 3), - SSF_THREAD_RUNNING = (1 << 4) + SSF_THREAD_RUNNING = (1 << 4), + SSF_READ_TRANSCODE = (1 << 5), + SSF_WRITE_TRANSCODE = (1 << 6), + SSF_READ_CODEC_RESET = (1 << 7), + SSF_WRITE_CODEC_RESET = (1 << 8) } switch_session_flag_t;