From: Mark Spencer Date: Fri, 14 Jun 2002 15:35:24 +0000 (+0000) Subject: Version 0.1.12 from FTP X-Git-Tag: 0.1.12~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=faa9890ff279e0933b1340c19d364f84daf513b6;p=thirdparty%2Fasterisk.git Version 0.1.12 from FTP git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@459 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/include/asterisk/frame.h b/include/asterisk/frame.h index af24a139bb..de7ebb5b3b 100755 --- a/include/asterisk/frame.h +++ b/include/asterisk/frame.h @@ -274,6 +274,13 @@ extern int ast_getformatbyname(char *name); /* Choose the best codec... Uhhh... Yah. */ extern int ast_best_codec(int fmts); +struct ast_smoother; + +extern struct ast_smoother *ast_smoother_new(int bytes); +extern void ast_smoother_free(struct ast_smoother *s); +extern int ast_smoother_feed(struct ast_smoother *s, struct ast_frame *f); +extern struct ast_frame *ast_smoother_read(struct ast_smoother *s); + #if defined(__cplusplus) || defined(c_plusplus) } #endif