aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/channel.h
diff options
context:
space:
mode:
authormartinp <martinp@f38db490-d61c-443f-a65b-d21fe96a405b>2003-08-28 20:02:10 +0000
committermartinp <martinp@f38db490-d61c-443f-a65b-d21fe96a405b>2003-08-28 20:02:10 +0000
commit0f7540708770a2ddd4c5afcb057e9ab89e658d3b (patch)
tree457a4a3e8dec7fcff81b0a750356704758734e0c /include/asterisk/channel.h
parenta5c52defec739c228fbc6e9c9bbfd79bbf57c04e (diff)
Fix synchronization of recorded files when using Monitor application
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1446 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/channel.h')
-rwxr-xr-xinclude/asterisk/channel.h4
1 files changed, 4 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;