[svn-commits] dlee: branch dlee/record-controls r395353 - /team/dlee/record-controls/includ...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Jul 24 19:54:50 CDT 2013


Author: dlee
Date: Wed Jul 24 19:54:48 2013
New Revision: 395353

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=395353
Log:
comments

Modified:
    team/dlee/record-controls/include/asterisk/stasis_app_recording.h

Modified: team/dlee/record-controls/include/asterisk/stasis_app_recording.h
URL: http://svnview.digium.com/svn/asterisk/team/dlee/record-controls/include/asterisk/stasis_app_recording.h?view=diff&rev=395353&r1=395352&r2=395353
==============================================================================
--- team/dlee/record-controls/include/asterisk/stasis_app_recording.h (original)
+++ team/dlee/record-controls/include/asterisk/stasis_app_recording.h Wed Jul 24 19:54:48 2013
@@ -48,18 +48,25 @@
 	STASIS_APP_RECORDING_STATE_FAILED,
 	/*! The media has stopped recording, discard the recording file */
 	STASIS_APP_RECORDING_STATE_CANCELED,
+	/*! Sentinel */
 	STASIS_APP_RECORDING_STATE_MAX,
 };
 
 /*! Valid operation for controlling a recording. */
 enum stasis_app_recording_media_operation {
+	/*! Stop the recording, deleting the media file(s) */
 	STASIS_APP_RECORDING_CANCEL,
-	/*! Stop the recording operation. */
+	/*! Stop the recording. */
 	STASIS_APP_RECORDING_STOP,
+	/*! Pause the recording */
 	STASIS_APP_RECORDING_PAUSE,
+	/*! Unpause the recording */
 	STASIS_APP_RECORDING_UNPAUSE,
+	/*! Mute the recording (record silence) */
 	STASIS_APP_RECORDING_MUTE,
+	/*! Unmute the recording */
 	STASIS_APP_RECORDING_UNMUTE,
+	/*! Sentinel */
 	STASIS_APP_RECORDING_OPER_MAX,
 };
 




More information about the svn-commits mailing list