From b1acfd36fdebe734a2d7e5de2a5a62566f712ce1 Mon Sep 17 00:00:00 2001 From: Tzafrir Cohen Date: Wed, 29 Oct 2014 10:33:14 +0000 Subject: Fix building chan_phone on big endian systems A left over from the formats conversion (Corey Farrell). ASTERISK-24458 #close Review: https://reviewboard.asterisk.org/r/4117/ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/13@426570 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_phone.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'channels/chan_phone.c') diff --git a/channels/chan_phone.c b/channels/chan_phone.c index ced9b1390..2bf7bddb4 100644 --- a/channels/chan_phone.c +++ b/channels/chan_phone.c @@ -827,7 +827,7 @@ static int phone_write(struct ast_channel *ast, struct ast_frame *frame) } else { int swap = 0; #if __BYTE_ORDER == __BIG_ENDIAN - if (frame->subclass.format.id == AST_FORMAT_SLINEAR) + if (ast_format_cmp(frame->subclass.format, ast_format_slin) == AST_FORMAT_CMP_EQUAL) swap = 1; /* Swap big-endian samples to little-endian as we copy */ #endif res = phone_write_buf(p, pos, expected, maxfr, swap); -- cgit v1.2.3