[asterisk-commits] russell: branch group/vldtmf r39426 - /team/group/vldtmf/include/asterisk/

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Tue Aug 8 16:45:13 MST 2006


Author: russell
Date: Tue Aug  8 18:45:12 2006
New Revision: 39426

URL: http://svn.digium.com/view/asterisk?rev=39426&view=rev
Log:
restore old order of frame types so we don't break IAX2 compatability with
older versions ... oops.  Thanks file!

Modified:
    team/group/vldtmf/include/asterisk/frame.h

Modified: team/group/vldtmf/include/asterisk/frame.h
URL: http://svn.digium.com/view/asterisk/team/group/vldtmf/include/asterisk/frame.h?rev=39426&r1=39425&r2=39426&view=diff
==============================================================================
--- team/group/vldtmf/include/asterisk/frame.h (original)
+++ team/group/vldtmf/include/asterisk/frame.h Tue Aug  8 18:45:12 2006
@@ -88,8 +88,6 @@
 enum ast_frame_type {
 	/*! DTMF end event, subclass is the digit */
 	AST_FRAME_DTMF_END = 1,
-	/*! DTMF begin event, subclass is the digit */
-	AST_FRAME_DTMF_BEGIN,
 	/*! Voice data, subclass is AST_FORMAT_* */
 	AST_FRAME_VOICE,
 	/*! Video frame, maybe?? :) */
@@ -111,6 +109,8 @@
 	AST_FRAME_CNG,
 	/*! Modem-over-IP data streams */
 	AST_FRAME_MODEM,	
+	/*! DTMF begin event, subclass is the digit */
+	AST_FRAME_DTMF_BEGIN,
 };
 #define AST_FRAME_DTMF AST_FRAME_DTMF_END
 



More information about the asterisk-commits mailing list