| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  * Asterisk -- An open source telephony toolkit. | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-01-21 07:06:25 +00:00
										 |  |  |  * Copyright (C) 1999 - 2005, Digium, Inc. | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2004-10-03 20:37:09 +00:00
										 |  |  |  * Mark Spencer <markster@digium.com> | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  * See http://www.asterisk.org for more information about
 | 
					
						
							|  |  |  |  * the Asterisk project. Please do not directly contact | 
					
						
							|  |  |  |  * any of the maintainers of this project for assistance; | 
					
						
							|  |  |  |  * the project provides a web site, mailing lists and IRC | 
					
						
							|  |  |  |  * channels for your use. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  |  * This program is free software, distributed under the terms of | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  * the GNU General Public License Version 2. See the LICENSE file | 
					
						
							|  |  |  |  * at the top of the source tree. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-26 13:03:17 +00:00
										 |  |  | /*! \file
 | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-10-26 13:03:17 +00:00
										 |  |  |  * \brief Save GSM in the proprietary Microsoft format. | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  *  | 
					
						
							| 
									
										
										
										
											2005-11-06 15:09:47 +00:00
										 |  |  |  * Microsoft WAV format (Proprietary GSM) | 
					
						
							|  |  |  |  * \arg File name extension: WAV,wav49  (Upper case WAV, lower case is another format) | 
					
						
							|  |  |  |  * This format can be played on Windows systems, used for | 
					
						
							|  |  |  |  * e-mail attachments mainly. | 
					
						
							|  |  |  |  * \ingroup formats | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  |   | 
					
						
							| 
									
										
										
										
											2006-06-07 18:54:56 +00:00
										 |  |  | #include "asterisk.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ASTERISK_FILE_VERSION(__FILE__, "$Revision$") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-22 00:53:49 +00:00
										 |  |  | #include "asterisk/mod_format.h"
 | 
					
						
							| 
									
										
										
										
											2005-06-06 22:12:19 +00:00
										 |  |  | #include "asterisk/module.h"
 | 
					
						
							|  |  |  | #include "asterisk/endian.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | #include "msgsm.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-01-22 21:30:04 +00:00
										 |  |  | /* Some Ideas for this code came from makewave.c by Jeffrey Chilton */ | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Portions of the conversion code are by guido@sienanet.it */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | #define	GSM_FRAME_SIZE	33
 | 
					
						
							|  |  |  | #define	MSGSM_FRAME_SIZE	65
 | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | #define	MSGSM_DATA_OFFSET		60	/* offset of data bytes */
 | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | #define	GSM_SAMPLES		160	/* samples in a GSM block */
 | 
					
						
							|  |  |  | #define	MSGSM_SAMPLES		(2*GSM_SAMPLES)	/* samples in an MSGSM block */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-02-03 16:57:00 +00:00
										 |  |  | /* begin binary data: */ | 
					
						
							|  |  |  | char msgsm_silence[] = /* 65 */ | 
					
						
							|  |  |  | {0x48,0x17,0xD6,0x84,0x02,0x80,0x24,0x49,0x92,0x24,0x89,0x02,0x80,0x24,0x49 | 
					
						
							|  |  |  | ,0x92,0x24,0x89,0x02,0x80,0x24,0x49,0x92,0x24,0x89,0x02,0x80,0x24,0x49,0x92 | 
					
						
							|  |  |  | ,0x24,0x09,0x82,0x74,0x61,0x4D,0x28,0x00,0x48,0x92,0x24,0x49,0x92,0x28,0x00 | 
					
						
							|  |  |  | ,0x48,0x92,0x24,0x49,0x92,0x28,0x00,0x48,0x92,0x24,0x49,0x92,0x28,0x00,0x48 | 
					
						
							|  |  |  | ,0x92,0x24,0x49,0x92,0x00}; | 
					
						
							|  |  |  | /* end binary data. size = 65 bytes */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | struct wavg_desc { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 	/* Believe it or not, we must decode/recode to account for the
 | 
					
						
							|  |  |  | 	   weird MS format */ | 
					
						
							|  |  |  | 	int secondhalf;						/* Are we on the second half */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if __BYTE_ORDER == __LITTLE_ENDIAN
 | 
					
						
							|  |  |  | #define htoll(b) (b)
 | 
					
						
							|  |  |  | #define htols(b) (b)
 | 
					
						
							|  |  |  | #define ltohl(b) (b)
 | 
					
						
							|  |  |  | #define ltohs(b) (b)
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #if __BYTE_ORDER == __BIG_ENDIAN
 | 
					
						
							|  |  |  | #define htoll(b)  \
 | 
					
						
							|  |  |  |           (((((b)      ) & 0xFF) << 24) | \ | 
					
						
							|  |  |  | 	       ((((b) >>  8) & 0xFF) << 16) | \ | 
					
						
							|  |  |  | 		   ((((b) >> 16) & 0xFF) <<  8) | \ | 
					
						
							|  |  |  | 		   ((((b) >> 24) & 0xFF)      )) | 
					
						
							|  |  |  | #define htols(b) \
 | 
					
						
							|  |  |  |           (((((b)      ) & 0xFF) << 8) | \ | 
					
						
							|  |  |  | 		   ((((b) >> 8) & 0xFF)      )) | 
					
						
							|  |  |  | #define ltohl(b) htoll(b)
 | 
					
						
							|  |  |  | #define ltohs(b) htols(b)
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #error "Endianess not defined"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | static int check_header(FILE *f) | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int type, size, formtype; | 
					
						
							|  |  |  | 	int fmt, hsize, fact; | 
					
						
							|  |  |  | 	short format, chans; | 
					
						
							|  |  |  | 	int freq; | 
					
						
							|  |  |  | 	int data; | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fread(&type, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Read failed (type)\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fread(&size, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Read failed (size)\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	size = ltohl(size); | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fread(&formtype, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Read failed (formtype)\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (memcmp(&type, "RIFF", 4)) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Does not begin with RIFF\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (memcmp(&formtype, "WAVE", 4)) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Does not contain WAVE\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fread(&fmt, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Read failed (fmt)\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (memcmp(&fmt, "fmt ", 4)) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Does not say fmt\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fread(&hsize, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Read failed (formtype)\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (ltohl(hsize) != 20) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Unexpected header size %d\n", ltohl(hsize)); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fread(&format, 1, 2, f) != 2) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Read failed (format)\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (ltohs(format) != 49) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Not a GSM file %d\n", ltohs(format)); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fread(&chans, 1, 2, f) != 2) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Read failed (format)\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (ltohs(chans) != 1) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Not in mono %d\n", ltohs(chans)); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fread(&freq, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Read failed (freq)\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 	if (ltohl(freq) != DEFAULT_SAMPLE_RATE) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unexpected freqency %d\n", ltohl(freq)); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* Ignore the byte frequency */ | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fread(&freq, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Read failed (X_1)\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* Ignore the two weird fields */ | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fread(&freq, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Read failed (X_2/X_3)\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* Ignore the byte frequency */ | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fread(&freq, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Read failed (Y_1)\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* Check for the word fact */ | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fread(&fact, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Read failed (fact)\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (memcmp(&fact, "fact", 4)) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Does not say fact\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* Ignore the "fact value" */ | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fread(&fact, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Read failed (fact header)\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fread(&fact, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Read failed (fact value)\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* Check for the word data */ | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fread(&data, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Read failed (data)\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (memcmp(&data, "data", 4)) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Does not say data\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* Ignore the data length */ | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fread(&data, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Read failed (data)\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | static int update_header(FILE *f) | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2003-02-06 22:11:43 +00:00
										 |  |  | 	off_t cur,end,bytes; | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	int datalen, filelen, samples; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-20 23:35:12 +00:00
										 |  |  | 	cur = ftello(f); | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	fseek(f, 0, SEEK_END); | 
					
						
							| 
									
										
										
										
											2006-02-20 23:35:12 +00:00
										 |  |  | 	end = ftello(f); | 
					
						
							| 
									
										
										
										
											2004-01-22 16:33:43 +00:00
										 |  |  | 	/* in a gsm WAV, data starts 60 bytes in */ | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	bytes = end - MSGSM_DATA_OFFSET; | 
					
						
							| 
									
										
										
										
											2006-04-13 20:19:02 +00:00
										 |  |  | 	samples = htoll(bytes / MSGSM_FRAME_SIZE * MSGSM_SAMPLES); | 
					
						
							| 
									
										
										
										
											2004-10-09 14:55:14 +00:00
										 |  |  | 	datalen = htoll((bytes + 1) & ~0x1); | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	filelen = htoll(MSGSM_DATA_OFFSET - 8 + ((bytes + 1) & ~0x1)); | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 	if (cur < 0) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Unable to find our position\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fseek(f, 4, SEEK_SET)) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to set our position\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fwrite(&filelen, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write file size\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (fseek(f, 48, SEEK_SET)) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Unable to set our position\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (fwrite(&samples, 1, 4, f) != 4) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Unable to write samples\n"); | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fseek(f, 56, SEEK_SET)) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to set our position\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fwrite(&datalen, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write datalen\n"); | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-02-20 23:35:12 +00:00
										 |  |  | 	if (fseeko(f, cur, SEEK_SET)) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to return to position\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | static int write_header(FILE *f) | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/* Samples per second (always 8000 for this format). */ | 
					
						
							|  |  |  | 	unsigned int sample_rate = htoll(8000); | 
					
						
							|  |  |  | 	/* Bytes per second (always 1625 for this format). */ | 
					
						
							|  |  |  | 	unsigned int byte_sample_rate = htoll(1625); | 
					
						
							|  |  |  | 	/* This is the size of the "fmt " subchunk */ | 
					
						
							|  |  |  | 	unsigned int fmtsize = htoll(20); | 
					
						
							|  |  |  | 	/* WAV #49 */ | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 	unsigned short fmt = htols(49); | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/* Mono = 1 channel */ | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 	unsigned short chans = htols(1); | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/* Each block of data is exactly 65 bytes in size. */ | 
					
						
							| 
									
										
										
										
											2006-06-20 22:22:47 +00:00
										 |  |  | 	unsigned int block_align = htoll(MSGSM_FRAME_SIZE); | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/* Not actually 2, but rounded up to the nearest bit */ | 
					
						
							|  |  |  | 	unsigned short bits_per_sample = htols(2); | 
					
						
							|  |  |  | 	/* Needed for compressed formats */ | 
					
						
							|  |  |  | 	unsigned short extra_format = htols(MSGSM_SAMPLES); | 
					
						
							|  |  |  | 	/* This is the size of the "fact" subchunk */ | 
					
						
							|  |  |  | 	unsigned int factsize = htoll(4); | 
					
						
							|  |  |  | 	/* Number of samples in the data chunk */ | 
					
						
							|  |  |  | 	unsigned int num_samples = htoll(0); | 
					
						
							|  |  |  | 	/* Number of bytes in the data chunk */ | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 	unsigned int size = htoll(0); | 
					
						
							|  |  |  | 	/* Write a GSM header, ignoring sizes which will be filled in later */ | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/*  0: Chunk ID */ | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fwrite("RIFF", 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write header\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/*  4: Chunk Size */ | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fwrite(&size, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write header\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/*  8: Chunk Format */ | 
					
						
							|  |  |  | 	if (fwrite("WAVE", 1, 4, f) != 4) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Unable to write header\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* 12: Subchunk 1: ID */ | 
					
						
							|  |  |  | 	if (fwrite("fmt ", 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write header\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/* 16: Subchunk 1: Size (minus 8) */ | 
					
						
							|  |  |  | 	if (fwrite(&fmtsize, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write header\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/* 20: Subchunk 1: Audio format (49) */ | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fwrite(&fmt, 1, 2, f) != 2) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write header\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/* 22: Subchunk 1: Number of channels */ | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fwrite(&chans, 1, 2, f) != 2) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write header\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/* 24: Subchunk 1: Sample rate */ | 
					
						
							|  |  |  | 	if (fwrite(&sample_rate, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write header\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/* 28: Subchunk 1: Byte rate */ | 
					
						
							|  |  |  | 	if (fwrite(&byte_sample_rate, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write header\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/* 32: Subchunk 1: Block align */ | 
					
						
							| 
									
										
										
										
											2006-04-13 17:20:28 +00:00
										 |  |  | 	if (fwrite(&block_align, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write header\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/* 36: Subchunk 1: Bits per sample */ | 
					
						
							|  |  |  | 	if (fwrite(&bits_per_sample, 1, 2, f) != 2) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write header\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/* 38: Subchunk 1: Extra format bytes */ | 
					
						
							|  |  |  | 	if (fwrite(&extra_format, 1, 2, f) != 2) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write header\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/* 40: Subchunk 2: ID */ | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fwrite("fact", 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write header\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/* 44: Subchunk 2: Size (minus 8) */ | 
					
						
							|  |  |  | 	if (fwrite(&factsize, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write header\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/* 48: Subchunk 2: Number of samples */ | 
					
						
							|  |  |  | 	if (fwrite(&num_samples, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write header\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/* 52: Subchunk 3: ID */ | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fwrite("data", 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write header\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	/* 56: Subchunk 3: Size */ | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	if (fwrite(&size, 1, 4, f) != 4) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to write header\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | static int wav_open(struct ast_filestream *s) | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* We don't have any header to read or anything really, but
 | 
					
						
							|  |  |  | 	   if we did, it would go here.  We also might want to check | 
					
						
							|  |  |  | 	   and be sure it's a valid file.  */ | 
					
						
							| 
									
										
										
										
											2007-11-29 17:50:44 +00:00
										 |  |  | 	struct wavg_desc *fs = (struct wavg_desc *)s->_private; | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (check_header(s->f)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	fs->secondhalf = 0;	/* not strictly necessary */ | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | static int wav_rewrite(struct ast_filestream *s, const char *comment) | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* We don't have any header to read or anything really, but
 | 
					
						
							|  |  |  | 	   if we did, it would go here.  We also might want to check | 
					
						
							|  |  |  | 	   and be sure it's a valid file.  */ | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (write_header(s->f)) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void wav_close(struct ast_filestream *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	char zero = 0; | 
					
						
							|  |  |  | 	/* Pad to even length */ | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	fseek(s->f, 0, SEEK_END); | 
					
						
							| 
									
										
										
										
											2006-02-20 23:35:12 +00:00
										 |  |  | 	if (ftello(s->f) & 0x1) | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 		fwrite(&zero, 1, 1, s->f); | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-28 22:50:47 +00:00
										 |  |  | static struct ast_frame *wav_read(struct ast_filestream *s, int *whennext) | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* Send a frame from the file to the appropriate channel */ | 
					
						
							| 
									
										
										
										
											2007-11-29 17:50:44 +00:00
										 |  |  | 	struct wavg_desc *fs = (struct wavg_desc *)s->_private; | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	s->fr.frametype = AST_FRAME_VOICE; | 
					
						
							|  |  |  | 	s->fr.subclass = AST_FORMAT_GSM; | 
					
						
							|  |  |  | 	s->fr.offset = AST_FRIENDLY_OFFSET; | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 	s->fr.samples = GSM_SAMPLES; | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 	s->fr.mallocd = 0; | 
					
						
							| 
									
										
										
										
											2006-04-09 22:31:38 +00:00
										 |  |  | 	AST_FRAME_SET_BUFFER(&s->fr, s->buf, AST_FRIENDLY_OFFSET, GSM_FRAME_SIZE); | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 	if (fs->secondhalf) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		/* Just return a frame based on the second GSM frame */ | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 		s->fr.data = (char *)s->fr.data + GSM_FRAME_SIZE; | 
					
						
							|  |  |  | 		s->fr.offset += GSM_FRAME_SIZE; | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 		/* read and convert */ | 
					
						
							| 
									
										
										
										
											2006-07-07 16:14:23 +00:00
										 |  |  | 		unsigned char msdata[MSGSM_FRAME_SIZE]; | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 		int res; | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		if ((res = fread(msdata, 1, MSGSM_FRAME_SIZE, s->f)) != MSGSM_FRAME_SIZE) { | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 			if (res && (res != 1)) | 
					
						
							|  |  |  | 				ast_log(LOG_WARNING, "Short read (%d) (%s)!\n", res, strerror(errno)); | 
					
						
							| 
									
										
										
										
											2003-06-28 22:50:47 +00:00
										 |  |  | 			return NULL; | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		/* Convert from MS format to two real GSM frames */ | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 		conv65(msdata, s->fr.data); | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 	fs->secondhalf = !fs->secondhalf; | 
					
						
							|  |  |  | 	*whennext = GSM_SAMPLES; | 
					
						
							| 
									
										
										
										
											2003-06-28 22:50:47 +00:00
										 |  |  | 	return &s->fr; | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | static int wav_write(struct ast_filestream *s, struct ast_frame *f) | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 	int len; | 
					
						
							|  |  |  | 	int size; | 
					
						
							| 
									
										
										
										
											2007-11-29 17:50:44 +00:00
										 |  |  | 	struct wavg_desc *fs = (struct wavg_desc *)s->_private; | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 	if (f->frametype != AST_FRAME_VOICE) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Asked to write non-voice frame!\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (f->subclass != AST_FORMAT_GSM) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Asked to write non-GSM frame (%d)!\n", f->subclass); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 	/* XXX this might fail... if the input is a multiple of MSGSM_FRAME_SIZE
 | 
					
						
							|  |  |  | 	 * we assume it is already in the correct format. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!(f->datalen % MSGSM_FRAME_SIZE)) { | 
					
						
							|  |  |  | 		size = MSGSM_FRAME_SIZE; | 
					
						
							|  |  |  | 		fs->secondhalf = 0; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		size = GSM_FRAME_SIZE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	for (len = 0; len < f->datalen ; len += size) { | 
					
						
							|  |  |  | 		int res; | 
					
						
							| 
									
										
										
										
											2006-07-07 16:14:23 +00:00
										 |  |  | 		unsigned char *src, msdata[MSGSM_FRAME_SIZE]; | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 		if (fs->secondhalf) {	/* second half of raw gsm to be converted */ | 
					
						
							|  |  |  | 			memcpy(s->buf + GSM_FRAME_SIZE, f->data + len, GSM_FRAME_SIZE); | 
					
						
							| 
									
										
										
										
											2006-07-07 16:14:23 +00:00
										 |  |  | 			conv66((unsigned char *) s->buf, msdata); | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 			src = msdata; | 
					
						
							| 
									
										
										
										
											2003-04-26 16:06:23 +00:00
										 |  |  | 			fs->secondhalf = 0; | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 		} else if (size == GSM_FRAME_SIZE) {	/* first half of raw gsm */ | 
					
						
							|  |  |  | 			memcpy(s->buf, f->data + len, GSM_FRAME_SIZE); | 
					
						
							|  |  |  | 			src = NULL;	/* nothing to write */ | 
					
						
							|  |  |  | 			fs->secondhalf = 1; | 
					
						
							|  |  |  | 		} else {	/* raw msgsm data */ | 
					
						
							|  |  |  | 			src = f->data + len; | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-04-13 17:46:06 +00:00
										 |  |  | 		if (src && (res = fwrite(src, 1, MSGSM_FRAME_SIZE, s->f)) != MSGSM_FRAME_SIZE) { | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 			ast_log(LOG_WARNING, "Bad write (%d/65): %s\n", res, strerror(errno)); | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		update_header(s->f); /* XXX inefficient! */ | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-20 23:35:12 +00:00
										 |  |  | static int wav_seek(struct ast_filestream *fs, off_t sample_offset, int whence) | 
					
						
							| 
									
										
										
										
											2003-02-06 22:11:43 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 	off_t offset=0, distance, max; | 
					
						
							| 
									
										
										
										
											2007-11-29 17:50:44 +00:00
										 |  |  | 	struct wavg_desc *s = (struct wavg_desc *)fs->_private; | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	off_t min = MSGSM_DATA_OFFSET; | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 	off_t cur = ftello(fs->f); | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	fseek(fs->f, 0, SEEK_END); | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 	max = ftello(fs->f);	/* XXX ideally, should round correctly */ | 
					
						
							|  |  |  | 	/* Compute the distance in bytes, rounded to the block size */ | 
					
						
							|  |  |  | 	distance = (sample_offset/MSGSM_SAMPLES) * MSGSM_FRAME_SIZE; | 
					
						
							|  |  |  | 	if (whence == SEEK_SET) | 
					
						
							| 
									
										
										
										
											2003-02-06 22:11:43 +00:00
										 |  |  | 		offset = distance + min; | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 	else if (whence == SEEK_CUR || whence == SEEK_FORCECUR) | 
					
						
							| 
									
										
										
										
											2003-02-06 22:11:43 +00:00
										 |  |  | 		offset = distance + cur; | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 	else if (whence == SEEK_END) | 
					
						
							| 
									
										
										
										
											2003-02-06 22:11:43 +00:00
										 |  |  | 		offset = max - distance; | 
					
						
							| 
									
										
										
										
											2004-12-19 21:13:41 +00:00
										 |  |  | 	/* always protect against seeking past end of header */ | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 	if (offset < min) | 
					
						
							|  |  |  | 		offset = min; | 
					
						
							| 
									
										
										
										
											2003-08-28 20:02:10 +00:00
										 |  |  | 	if (whence != SEEK_FORCECUR) { | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 		if (offset > max) | 
					
						
							|  |  |  | 			offset = max; | 
					
						
							| 
									
										
										
										
											2004-02-03 16:57:00 +00:00
										 |  |  | 	} else if (offset > max) { | 
					
						
							|  |  |  | 		int i; | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 		fseek(fs->f, 0, SEEK_END); | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 		for (i=0; i< (offset - max) / MSGSM_FRAME_SIZE; i++) { | 
					
						
							|  |  |  | 			fwrite(msgsm_silence, 1, MSGSM_FRAME_SIZE, fs->f); | 
					
						
							| 
									
										
										
										
											2004-02-03 16:57:00 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2003-08-28 20:02:10 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 	s->secondhalf = 0; | 
					
						
							| 
									
										
										
										
											2006-02-20 23:35:12 +00:00
										 |  |  | 	return fseeko(fs->f, offset, SEEK_SET); | 
					
						
							| 
									
										
										
										
											2003-02-06 22:11:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int wav_trunc(struct ast_filestream *fs) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-20 23:35:12 +00:00
										 |  |  | 	if (ftruncate(fileno(fs->f), ftello(fs->f))) | 
					
						
							| 
									
										
										
										
											2003-02-06 22:11:43 +00:00
										 |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											2005-10-16 16:12:51 +00:00
										 |  |  | 	return update_header(fs->f); | 
					
						
							| 
									
										
										
										
											2003-02-06 22:11:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-20 23:35:12 +00:00
										 |  |  | static off_t wav_tell(struct ast_filestream *fs) | 
					
						
							| 
									
										
										
										
											2003-02-06 22:11:43 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	off_t offset; | 
					
						
							| 
									
										
										
										
											2006-02-20 23:35:12 +00:00
										 |  |  | 	offset = ftello(fs->f); | 
					
						
							| 
									
										
										
										
											2003-02-06 22:11:43 +00:00
										 |  |  | 	/* since this will most likely be used later in play or record, lets stick
 | 
					
						
							|  |  |  | 	 * to that level of resolution, just even frames boundaries */ | 
					
						
							| 
									
										
										
										
											2006-04-13 01:29:54 +00:00
										 |  |  | 	return (offset - MSGSM_DATA_OFFSET)/MSGSM_FRAME_SIZE*MSGSM_SAMPLES; | 
					
						
							| 
									
										
										
										
											2003-02-06 22:11:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | static const struct ast_format wav49_f = { | 
					
						
							|  |  |  | 	.name = "wav49", | 
					
						
							|  |  |  | 	.exts = "WAV|wav49", | 
					
						
							|  |  |  | 	.format = AST_FORMAT_GSM, | 
					
						
							|  |  |  | 	.open =	wav_open, | 
					
						
							|  |  |  | 	.rewrite = wav_rewrite, | 
					
						
							|  |  |  | 	.write = wav_write, | 
					
						
							|  |  |  | 	.seek = wav_seek, | 
					
						
							|  |  |  | 	.trunc = wav_trunc, | 
					
						
							|  |  |  | 	.tell = wav_tell, | 
					
						
							|  |  |  | 	.read = wav_read, | 
					
						
							|  |  |  | 	.close = wav_close, | 
					
						
							|  |  |  | 	.buf_size = 2*GSM_FRAME_SIZE + AST_FRIENDLY_OFFSET, | 
					
						
							|  |  |  | 	.desc_size = sizeof(struct wavg_desc), | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | static int load_module(void) | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-10-31 19:24:29 +00:00
										 |  |  | 	if (ast_format_register(&wav49_f)) | 
					
						
							|  |  |  | 		return AST_MODULE_LOAD_FAILURE; | 
					
						
							|  |  |  | 	return AST_MODULE_LOAD_SUCCESS; | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | static int unload_module(void) | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-04-04 12:59:25 +00:00
										 |  |  | 	return ast_format_unregister(wav49_f.name); | 
					
						
							| 
									
										
										
										
											1999-12-16 13:44:30 +00:00
										 |  |  | }	 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Microsoft WAV format (Proprietary GSM)"); |