[svn-commits] mnicholson: branch group/res_fax r236353 - /team/group/res_fax/res/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Dec 23 15:35:26 CST 2009


Author: mnicholson
Date: Wed Dec 23 15:35:25 2009
New Revision: 236353

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=236353
Log:
Treat frames coming from spandsp as VOICE frames not VIDEO frames.  This was a typo.

Modified:
    team/group/res_fax/res/res_fax_spandsp.c

Modified: team/group/res_fax/res/res_fax_spandsp.c
URL: http://svnview.digium.com/svn/asterisk/team/group/res_fax/res/res_fax_spandsp.c?view=diff&rev=236353&r1=236352&r2=236353
==============================================================================
--- team/group/res_fax/res/res_fax_spandsp.c (original)
+++ team/group/res_fax/res/res_fax_spandsp.c Wed Dec 23 15:35:25 2009
@@ -399,7 +399,7 @@
 	char byte;
 
 	struct ast_frame fax_frame = {
-		.frametype = AST_FRAME_VIDEO,
+		.frametype = AST_FRAME_VOICE,
 		.subclass.codec = AST_FORMAT_SLINEAR,
 		.src = "res_fax_spandsp_g711",
 	};




More information about the svn-commits mailing list