aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-11 09:26:25 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-11 09:26:25 +0000
commit19b0b540555a50cab713bd16c46a1936c43e9718 (patch)
tree7a07e3c89efc242f0c9735e1df59617fccf9b94b /include
parent23e1e5c3fbec6ee8b2b8fb164435300852a20286 (diff)
Doxygen updates
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@92267 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/frame.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/include/asterisk/frame.h b/include/asterisk/frame.h
index cc32d701f..73fdef664 100644
--- a/include/asterisk/frame.h
+++ b/include/asterisk/frame.h
@@ -449,7 +449,10 @@ int ast_getformatbyname(const char *name);
*/
char *ast_codec2str(int codec);
-/*! \page ast_smooth
+/*! \name AST_Smoother
+*/
+/*@{ */
+/*! \page ast_smooth The AST Frame Smoother
The ast_smoother interface was designed specifically
to take frames of variant sizes and produce frames of a single expected
size, precisely what you want to do.
@@ -464,8 +467,6 @@ The basic interface is:
*/
struct ast_smoother;
-struct ast_format_list *ast_get_format_list_index(int index);
-struct ast_format_list *ast_get_format_list(size_t *size);
struct ast_smoother *ast_smoother_new(int bytes);
void ast_smoother_set_flags(struct ast_smoother *smoother, int flags);
int ast_smoother_get_flags(struct ast_smoother *smoother);
@@ -482,7 +483,10 @@ struct ast_frame *ast_smoother_read(struct ast_smoother *s);
#define ast_smoother_feed_be(s,f) __ast_smoother_feed(s, f, 0)
#define ast_smoother_feed_le(s,f) __ast_smoother_feed(s, f, 1)
#endif
+/*@} Doxygen marker */
+struct ast_format_list *ast_get_format_list_index(int index);
+struct ast_format_list *ast_get_format_list(size_t *size);
void ast_frame_dump(const char *name, struct ast_frame *f, char *prefix);
/*! \page AudioCodecPref Audio Codec Preferences