diff --git a/channels/h323/ast_h323.h b/channels/h323/ast_h323.h
index a7604834e1b7a03d9f362c1714553e744595b6d9..e42d985719fa8f9fb26367ffbe7720df097dd882 100755
--- a/channels/h323/ast_h323.h
+++ b/channels/h323/ast_h323.h
@@ -61,7 +61,8 @@
 #define AST_FORMAT_G729A	(1 << 8)
 /*! SpeeX Free Compression */
 #define AST_FORMAT_SPEEX	(1 << 9)
-
+/*! ILBC Free Codec */
+#define AST_FORMAT_ILBC         (1 << 10)
 
 /**This class describes the G.723.1 codec capability.
  */
diff --git a/channels/h323/chan_h323.c b/channels/h323/chan_h323.c
index 52a989f541f87c46b35c7c0d536a4a4b90220b8d..ba57a4f34f84dc4f89663970606e9a5ec23d1025 100755
--- a/channels/h323/chan_h323.c
+++ b/channels/h323/chan_h323.c
@@ -464,7 +464,14 @@ static int oh323_hangup(struct ast_channel *c)
 		p->needdestroy = 1;
 	}
 
-	
+	/* Update usage counter */
+	ast_pthread_mutex_lock(&usecnt_lock);
+	usecnt--;
+	if (usecnt < 0)
+		ast_log(LOG_WARNING, "Usecnt < 0\n");
+	ast_pthread_mutex_unlock(&usecnt_lock);
+	ast_update_use_count();
+
 	ast_pthread_mutex_unlock(&p->lock);
 	return 0;
 }