mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-22 20:56:39 +00:00
Merged revisions 158072 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r158072 | twilson | 2008-11-20 11:48:58 -0600 (Thu, 20 Nov 2008) | 2 lines Begin on a crusade to end trailing whitespace! ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@158133 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -315,6 +315,31 @@ off_t ast_tellstream(struct ast_filestream *fs);
|
||||
*/
|
||||
struct ast_frame *ast_readframe(struct ast_filestream *s);
|
||||
|
||||
/*!\brief destroy a filestream using an ast_frame as input
|
||||
*
|
||||
* This is a hack that is used also by the ast_trans_pvt and
|
||||
* ast_dsp structures. When a structure contains an ast_frame
|
||||
* pointer as one of its fields. It may be that the frame is
|
||||
* still used after the outer structure is freed. This leads to
|
||||
* invalid memory accesses. This function allows for us to hold
|
||||
* off on destroying the ast_filestream until we are done using
|
||||
* the ast_frame pointer that is part of it
|
||||
*
|
||||
* \param fr The ast_frame that is part of an ast_filestream we wish
|
||||
* to free.
|
||||
*/
|
||||
void ast_filestream_frame_freed(struct ast_frame *fr);
|
||||
|
||||
/*! Initialize file stuff */
|
||||
/*!
|
||||
* Initializes all the various file stuff. Basically just registers the cli stuff
|
||||
* Returns 0 all the time
|
||||
*/
|
||||
int ast_file_init(void);
|
||||
|
||||
|
||||
#define AST_RESERVED_POINTERS 20
|
||||
|
||||
#if defined(__cplusplus) || defined(c_plusplus)
|
||||
}
|
||||
#endif
|
||||
|
@@ -134,6 +134,10 @@ enum {
|
||||
* The dsp cannot be free'd if the frame inside of it still has
|
||||
* this flag set. */
|
||||
AST_FRFLAG_FROM_DSP = (1 << 2),
|
||||
/*! This frame came from a filestream and is still the original frame.
|
||||
* The filestream cannot be free'd if the frame inside of it still has
|
||||
* this flag set. */
|
||||
AST_FRFLAG_FROM_FILESTREAM = (1 << 3),
|
||||
};
|
||||
|
||||
/*! \brief Data structure associated with a single frame of data
|
||||
|
Reference in New Issue
Block a user