aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/frame.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2002-06-14 15:35:24 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2002-06-14 15:35:24 +0000
commit12a0782e7a5edf40cfda82eb59179c993a4c4f41 (patch)
tree8a6080f0e9a41c2f870a95c16682dc9a29ac308e /include/asterisk/frame.h
parentcf2c0fa884832dc074f59de8e89ae00191b68c8e (diff)
Version 0.1.12 from FTP
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@459 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/frame.h')
-rwxr-xr-xinclude/asterisk/frame.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/asterisk/frame.h b/include/asterisk/frame.h
index af24a139b..de7ebb5b3 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