aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk
diff options
context:
space:
mode:
Diffstat (limited to 'include/asterisk')
-rwxr-xr-xinclude/asterisk/channel.h4
-rwxr-xr-xinclude/asterisk/file.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h
index 7cd2470e0..5a39a6743 100755
--- a/include/asterisk/channel.h
+++ b/include/asterisk/channel.h
@@ -199,6 +199,10 @@ struct ast_channel {
/* Channel monitoring */
struct ast_channel_monitor *monitor;
+ /*! Track the read/written samples for monitor use */
+ unsigned long insmpl;
+ unsigned long outsmpl;
+
/* Frames in/out counters */
unsigned int fin;
unsigned int fout;
diff --git a/include/asterisk/file.h b/include/asterisk/file.h
index da3723dac..f7808e435 100755
--- a/include/asterisk/file.h
+++ b/include/asterisk/file.h
@@ -27,6 +27,8 @@ extern "C" {
//! Convenient for waiting
#define AST_DIGIT_ANY "0123456789#*"
+#define SEEK_FORCECUR 10
+
/* Defined by individual formats. First item MUST be a
pointer for use by the stream manager */
struct ast_filestream;