[asterisk-commits] kpfleming: trunk r39832 - /trunk/channels/chan_h323.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Tue Aug 15 10:14:20 MST 2006


Author: kpfleming
Date: Tue Aug 15 12:14:20 2006
New Revision: 39832

URL: http://svn.digium.com/view/asterisk?rev=39832&view=rev
Log:
complete the coding style changes for these frame structures

Modified:
    trunk/channels/chan_h323.c

Modified: trunk/channels/chan_h323.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_h323.c?rev=39832&r1=39831&r2=39832&view=diff
==============================================================================
--- trunk/channels/chan_h323.c (original)
+++ trunk/channels/chan_h323.c Tue Aug 15 12:14:20 2006
@@ -278,10 +278,13 @@
 		pvt->newcontrol = -1;
 	}
 	if (pvt->newdigit >= 0) {
-		struct ast_frame f = {AST_FRAME_DTMF, pvt->newdigit, };
-
-		f.samples = 800;
-		f.src = "UPDATE_INFO";
+		struct ast_frame f = {
+			.frametype = AST_FRAME_DTMF,
+			.subclass = pvt->newdigit,
+			.samples = 800,
+			.src = "UPDATE_INFO",
+		};
+
 		ast_queue_frame(c, &f);
 		pvt->newdigit = -1;
 	}
@@ -1158,9 +1161,13 @@
 		return -1;
 	}
 	if (pvt->owner && !ast_mutex_trylock(&pvt->owner->lock)) {
-		struct ast_frame f = {AST_FRAME_DTMF, digit, };
-		f.samples = 800;
-		f.src = "SEND_DIGIT";
+		struct ast_frame f = {
+			.frametype = AST_FRAME_DTMF,
+			.subclass = digit,
+			.samples = 800,
+			.src = "SEND_DIGIT",
+		};
+
 		res = ast_queue_frame(pvt->owner, &f);
 		ast_mutex_unlock(&pvt->owner->lock);
 	} else {



More information about the asterisk-commits mailing list