[svn-commits] oej: trunk r89048 - in /trunk: include/asterisk/tdd.h main/tdd.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Nov 6 13:10:26 CST 2007


Author: oej
Date: Tue Nov  6 13:10:26 2007
New Revision: 89048

URL: http://svn.digium.com/view/asterisk?view=rev&rev=89048
Log:
Additional TDD changes (preparing for SIP changes - adding TDD support to SIP)

Modified:
    trunk/include/asterisk/tdd.h
    trunk/main/tdd.c

Modified: trunk/include/asterisk/tdd.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/tdd.h?view=diff&rev=89048&r1=89047&r2=89048
==============================================================================
--- trunk/include/asterisk/tdd.h (original)
+++ trunk/include/asterisk/tdd.h Tue Nov  6 13:10:26 2007
@@ -34,35 +34,29 @@
  */
 void tdd_init(void);
 
-/*! 
- * \brief Generates a CallerID FSK stream in ulaw format suitable for transmission.
+/*! Generates a CallerID FSK stream in ulaw format suitable for transmission.
  * \param tdd tdd structure
  * \param buf Buffer to use. This needs to be large enough to accomodate all the generated samples.
  * \param string This is the string to send.
- * This function creates a stream of TDD data in ulaw format. 
- * \return The size (in bytes) of the data (if it returns a size of 0, there is probably an error)
+ * This function creates a stream of TDD data in ulaw format. It returns the size
+ * (in bytes) of the data (if it returns a size of 0, there is probably an error)
 */
 int tdd_generate(struct tdd_state *tdd, unsigned char *buf, const char *string);
 
-/*! 
- * \brief Create a TDD state machine. 
+/*! Create a TDD state machine 
  * This function returns a malloc'd instance of the tdd_state data structure.
- * \retval a pointer to a malloc'd tdd_state structure
- * \retval NULL on error.
+ * Returns a pointer to a malloc'd tdd_state structure, or NULL on error.
  */
 struct tdd_state *tdd_new(void);
 
-/*! 
- * \brief Read samples into the state machine, and return character (if any).
+/*! Read samples into the state machine, and return character (if any).
  * \param tdd Which state machine to act upon
  * \param ubuf containing your samples
  * \param samples number of samples contained within the buffer.
  *
  * Send received audio to the TDD demodulator.
- * 
- * \retval -1 on error
- * \retval 0 for "needs more samples"
- * \retval > 0 (the character) if reception of a character is complete.
+ * Returns -1 on error, 0 for "needs more samples",
+ * and > 0 (the character) if reception of a character is complete.
  */
 int tdd_feed(struct tdd_state *tdd, unsigned char *ubuf, int samples);
 
@@ -75,9 +69,14 @@
 /*! Generate Echo Canceller disable tone (2100HZ) 
  * \param outbuf This is the buffer to receive the tone data
  * \param len This is the length (in samples) of the tone data to generate
- * \retval 0 if no error
- * \retval -1 if error.
+ * Returns 0 if no error, and -1 if error.
  */
 int ast_tdd_gen_ecdisa(unsigned char *outbuf, int len);
 
+
+/*! Generate hold tone 
+ * \param outbuf This is the buffer to receive the tone data
+*/
+int tdd_gen_holdtone(unsigned char* outbuf);
+
 #endif /* _ASTERISK_TDD_H */

Modified: trunk/main/tdd.c
URL: http://svn.digium.com/view/asterisk/trunk/main/tdd.c?view=diff&rev=89048&r1=89047&r2=89048
==============================================================================
--- trunk/main/tdd.c (original)
+++ trunk/main/tdd.c Tue Nov  6 13:10:26 2007
@@ -261,6 +261,18 @@
 	PUT_TDD_STOP;	/* Stop bit */ \
 } while(0);	
 
+/*! Generate TDD hold tone */
+int tdd_gen_holdtone(unsigned char *buf)
+{
+	int bytes=0;
+	float scont=0.0,cr=1.0,ci=0.0;
+	while(scont < tddsb*10.0) {
+		PUT_AUDIO_SAMPLE(tdd_getcarrier(&cr, &ci, 1));
+		scont += 1.0;
+	}
+	return bytes;
+}
+
 int tdd_generate(struct tdd_state *tdd, unsigned char *buf, const char *str)
 {
 	int bytes=0;




More information about the svn-commits mailing list