summaryrefslogtreecommitdiff
path: root/include/asterisk/frame.h
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-05-31 16:56:50 +0000
committerRussell Bryant <russell@russellbryant.com>2006-05-31 16:56:50 +0000
commitbb7dd96cfeebec49a6adbed0c44ef92896fca2c1 (patch)
tree24a5e287490aa56d6fad0961d8832f1ba7eea1fd /include/asterisk/frame.h
parent503486e99d5bd1eb6ace4f62b3d6f4488b97b323 (diff)
Add support for using a jitterbuffer for RTP on bridged calls. This includes
a new implementation of a fixed size jitterbuffer, as well as support for the existing adaptive jitterbuffer implementation. (issue #3854, Slav Klenov) Thank you very much to Slav Klenov of Securax and all of the people involved in the testing of this feature for all of your hard work! git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@31052 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/frame.h')
-rw-r--r--include/asterisk/frame.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/asterisk/frame.h b/include/asterisk/frame.h
index 102a637f4..7029517d6 100644
--- a/include/asterisk/frame.h
+++ b/include/asterisk/frame.h
@@ -109,6 +109,14 @@ struct ast_frame {
struct ast_frame *prev;
/*! Next/Prev for linking stand alone frames */
struct ast_frame *next;
+ /*! Timing data flag */
+ int has_timing_info;
+ /*! Timestamp in milliseconds */
+ long ts;
+ /*! Length in milliseconds */
+ long len;
+ /*! Sequence number */
+ int seqno;
};
/*!