summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2008-01-15 23:35:29 +0000
committerRussell Bryant <russell@russellbryant.com>2008-01-15 23:35:29 +0000
commit25e1c74bf130931ed1c8bad364f5a41d80ec7db4 (patch)
tree837844fe54af013f31e85dc2de244fb2d49e1927 /include
parent4fb04cb58a15aafd7cf4be6d042bc0cccdbbefe9 (diff)
Clean up something I did for ABI compatability in 1.4
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@98945 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/translate.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/include/asterisk/translate.h b/include/asterisk/translate.h
index b1f615f7f..97f10283f 100644
--- a/include/asterisk/translate.h
+++ b/include/asterisk/translate.h
@@ -138,13 +138,7 @@ struct ast_trans_pvt {
struct ast_translator *t;
struct ast_frame f; /*!< used in frameout */
int samples; /*!< samples available in outbuf */
- /*!
- * \brief actual space used in outbuf
- *
- * Also, for the sake of ABI compatability, a magic value of -1 in this
- * field means that the pvt has been requested to be destroyed, but is
- * pending destruction until ast_translate_frame_freed() gets called.
- */
+ /*! \brief actual space used in outbuf */
int datalen;
void *pvt; /*!< more private data, if any */
char *outbuf; /*!< the useful portion of the buffer */
@@ -152,6 +146,7 @@ struct ast_trans_pvt {
struct ast_trans_pvt *next; /*!< next in translator chain */
struct timeval nextin;
struct timeval nextout;
+ unsigned int destroy:1;
};
/*! \brief generic frameout function */