mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-26 22:30:28 +00:00
Put my slinfactory changes back in.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@113009 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -28,10 +28,12 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define AST_SLINFACTORY_MAX_HOLD 1280
|
||||
|
||||
struct ast_slinfactory {
|
||||
AST_LIST_HEAD_NOLOCK(, ast_frame) queue; /*!< A list of unaltered frames */
|
||||
struct ast_trans_pvt *trans; /*!< Translation path that converts fed frames into signed linear */
|
||||
short hold[1280]; /*!< Hold for audio that no longer belongs to a frame (ie: if only some samples were taken from a frame) */
|
||||
short hold[AST_SLINFACTORY_MAX_HOLD]; /*!< Hold for audio that no longer belongs to a frame (ie: if only some samples were taken from a frame) */
|
||||
short *offset; /*!< Offset into the hold where audio begins */
|
||||
size_t holdlen; /*!< Number of samples currently in the hold */
|
||||
unsigned int size; /*!< Number of samples currently in the factory */
|
||||
|
||||
Reference in New Issue
Block a user