mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-11-04 05:15:22 +00:00 
			
		
		
		
	actually return the number steps... not the number of steps minus 1
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@20964 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		@@ -2746,7 +2746,8 @@ int ast_channel_make_compatible(struct ast_channel *chan, struct ast_channel *pe
 | 
			
		||||
	   transcoding is needed; if desired, force transcode path
 | 
			
		||||
	   to use SLINEAR between channels, but only if there is
 | 
			
		||||
	   no direct conversion available */
 | 
			
		||||
	if ((src != dst) && ast_opt_transcode_via_slin && ast_translate_path_steps(dst, src))
 | 
			
		||||
	if ((src != dst) && ast_opt_transcode_via_slin &&
 | 
			
		||||
	    (ast_translate_path_steps(dst, src) != 1))
 | 
			
		||||
		dst = AST_FORMAT_SLINEAR;
 | 
			
		||||
	if (ast_set_read_format(chan, dst) < 0) {
 | 
			
		||||
		ast_log(LOG_WARNING, "Unable to set read format on channel %s to %d\n", chan->name, dst);
 | 
			
		||||
@@ -2769,7 +2770,8 @@ int ast_channel_make_compatible(struct ast_channel *chan, struct ast_channel *pe
 | 
			
		||||
	   transcoding is needed; if desired, force transcode path
 | 
			
		||||
	   to use SLINEAR between channels, but only if there is
 | 
			
		||||
	   no direct conversion available */
 | 
			
		||||
	if ((src != dst) && ast_opt_transcode_via_slin && ast_translate_path_steps(dst, src))
 | 
			
		||||
	if ((src != dst) && ast_opt_transcode_via_slin &&
 | 
			
		||||
	    (ast_translate_path_steps(dst, src) != 1))
 | 
			
		||||
		dst = AST_FORMAT_SLINEAR;
 | 
			
		||||
	if (ast_set_read_format(peer, dst) < 0) {
 | 
			
		||||
		ast_log(LOG_WARNING, "Unable to set read format on channel %s to %d\n", peer->name, dst);
 | 
			
		||||
 
 | 
			
		||||
@@ -659,5 +659,5 @@ unsigned int ast_translate_path_steps(unsigned int dest, unsigned int src)
 | 
			
		||||
	if (!tr_matrix[src][dest].step)
 | 
			
		||||
		return -1;
 | 
			
		||||
	else
 | 
			
		||||
		return tr_matrix[src][dest].multistep;
 | 
			
		||||
		return tr_matrix[src][dest].multistep + 1;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user