[Asterisk-code-review] channel: write to a stream on multi-frame writes (asterisk[16])

Kevin Harwell asteriskteam at digium.com
Tue Mar 31 13:05:28 CDT 2020


Kevin Harwell has uploaded this change for review. ( https://gerrit.asterisk.org/c/asterisk/+/14035 )


Change subject: channel: write to a stream on multi-frame writes
......................................................................

channel: write to a stream on multi-frame writes

If a frame handling routine returns a list of frames (vs. a single frame)
those frames are never passed to a tech's write_stream handler even if one is
available. For instance, if a codec translation occurred and that codec
returned multiple frames then those particular frames were always only sent
to the tech's "write" handler. If that tech (pjsip for example) was stream
capable then those frames were essentially ignored. Thus resulting in bad
audio.

This patch makes it so the "write_stream" handler is appropriately called
for all cases, and for all frames if available.

ASTERISK-28795 #close

Change-Id: I868faea0b73a07ed5a32c2b05bb9cf4b586f739d
---
M main/channel.c
1 file changed, 16 insertions(+), 23 deletions(-)



  git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/35/14035/1

diff --git a/main/channel.c b/main/channel.c
index 63ce64e..3390917 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -5080,6 +5080,18 @@
 	adjust_frame_for_plc(chan, frame, datastore);
 }
 
+static int tech_write(struct ast_channel *chan, struct ast_stream *stream,
+			struct ast_stream *default_stream, struct ast_frame *frame)
+{
+	if (ast_channel_tech(chan)->write_stream) {
+		return stream ? ast_channel_tech(chan)->write_stream(
+			chan, ast_stream_get_position(stream), frame) : 0;
+	}
+
+	return ((stream == default_stream) && ast_channel_tech(chan)->write) ?
+		ast_channel_tech(chan)->write(chan, frame) : 0;
+}
+
 int ast_write(struct ast_channel *chan, struct ast_frame *fr)
 {
 	return ast_write_stream(chan, -1, fr);
@@ -5233,17 +5245,7 @@
 		break;
 	case AST_FRAME_MODEM:
 		CHECK_BLOCKING(chan);
-		if (ast_channel_tech(chan)->write_stream) {
-			if (stream) {
-				res = ast_channel_tech(chan)->write_stream(chan, ast_stream_get_position(stream), fr);
-			} else {
-				res = 0;
-			}
-		} else if ((stream == default_stream) && ast_channel_tech(chan)->write) {
-			res = ast_channel_tech(chan)->write(chan, fr);
-		} else {
-			res = 0;
-		}
+		res = tech_write(chan, stream, default_stream, fr);
 		ast_clear_flag(ast_channel_flags(chan), AST_FLAG_BLOCKING);
 		break;
 	case AST_FRAME_VOICE:
@@ -5410,7 +5412,8 @@
 				next = AST_LIST_NEXT(cur, frame_list);
 				AST_LIST_NEXT(cur, frame_list) = NULL;
 				if (!skip) {
-					if ((res = ast_channel_tech(chan)->write(chan, cur)) < 0) {
+					res = tech_write(chan, stream, default_stream, cur);
+					if (res < 0) {
 						ast_channel_softhangup_internal_flag_add(chan, AST_SOFTHANGUP_DEV);
 						skip = 1;
 					} else if (next) {
@@ -5427,17 +5430,7 @@
 			/* reset f so the code below doesn't attempt to free it */
 			f = NULL;
 		} else {
-			if (ast_channel_tech(chan)->write_stream) {
-				if (stream) {
-					res = ast_channel_tech(chan)->write_stream(chan, ast_stream_get_position(stream), f);
-				} else {
-					res = 0;
-				}
-			} else if ((stream == default_stream) && ast_channel_tech(chan)->write) {
-				res = ast_channel_tech(chan)->write(chan, f);
-			} else {
-				res = 0;
-			}
+			res = tech_write(chan, stream, default_stream, f);
 		}
 		ast_clear_flag(ast_channel_flags(chan), AST_FLAG_BLOCKING);
 		break;

-- 
To view, visit https://gerrit.asterisk.org/c/asterisk/+/14035
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings

Gerrit-Project: asterisk
Gerrit-Branch: 16
Gerrit-Change-Id: I868faea0b73a07ed5a32c2b05bb9cf4b586f739d
Gerrit-Change-Number: 14035
Gerrit-PatchSet: 1
Gerrit-Owner: Kevin Harwell <kharwell at digium.com>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20200331/6201756e/attachment.html>


More information about the asterisk-code-review mailing list