formatting cleanup on the header,

normalization of the assignment of descriptor fields.



git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89530 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Luigi Rizzo
2007-11-23 09:03:33 +00:00
parent f0780d2b47
commit 2b93af99dc
2 changed files with 15 additions and 23 deletions

View File

@@ -89,13 +89,13 @@ static int jpeg_write_image(int fd, struct ast_frame *fr)
}
static struct ast_imager jpeg_format = {
"jpg",
"JPEG (Joint Picture Experts Group)",
"jpg|jpeg",
AST_FORMAT_JPEG,
jpeg_read_image,
jpeg_identify,
jpeg_write_image,
.name = "jpg",
.desc = "JPEG (Joint Picture Experts Group)",
.exts = "jpg|jpeg",
.format = AST_FORMAT_JPEG,
.read_image = jpeg_read_image,
.identify = jpeg_identify,
.write_image = jpeg_write_image,
};
static int load_module(void)