aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/image.h
diff options
context:
space:
mode:
authorrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-23 09:03:33 +0000
committerrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-23 09:03:33 +0000
commitf73d6060678cbe24f526d8e99ba5a8207605f035 (patch)
treea78e79e6b74347674c5bd5ca63710672a7ef6169 /include/asterisk/image.h
parent5299bba5ce583a7cc806c55556974da420a2cd0d (diff)
formatting cleanup on the header,
normalization of the assignment of descriptor fields. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89530 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/image.h')
-rw-r--r--include/asterisk/image.h24
1 files changed, 8 insertions, 16 deletions
diff --git a/include/asterisk/image.h b/include/asterisk/image.h
index 90979da96..cfe511904 100644
--- a/include/asterisk/image.h
+++ b/include/asterisk/image.h
@@ -25,22 +25,14 @@
/*! \brief structure associated with registering an image format */
struct ast_imager {
- /*! Name */
- char *name;
- /*! Description */
- char *desc;
- /*! Extension(s) (separated by '|' ) */
- char *exts;
- /*! Image format */
- int format;
- /*! Read an image from a file descriptor */
- struct ast_frame *(*read_image)(int fd, int len);
- /*! Identify if this is that type of file */
- int (*identify)(int fd);
- /*! Returns length written */
- int (*write_image)(int fd, struct ast_frame *frame);
- /*! For linked list */
- AST_LIST_ENTRY(ast_imager) list;
+ char *name; /*!< Name */
+ char *desc; /*!< Description */
+ char *exts; /*!< Extension(s) (separated by '|' ) */
+ int format; /*!< Image format */
+ struct ast_frame *(*read_image)(int fd, int len); /*!< Read an image from a file descriptor */
+ int (*identify)(int fd); /*!< Identify if this is that type of file */
+ int (*write_image)(int fd, struct ast_frame *frame); /*!< Returns length written */
+ AST_LIST_ENTRY(ast_imager) list; /*!< For linked list */
};
/*!