summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir.cohen@xorcom.com>2014-10-29 13:02:27 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2014-10-29 13:02:27 +0000
commit8a69aedd17b7b0c3e9e5b0b88483b6a2536cabc1 (patch)
tree03d03ccb1d6d2ab72f9f4bb78be689b9845e22bb
parent0ed8aebda9a72509d342f362481222bad4ce5575 (diff)
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/ ........ Merged revisions 426570 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@426573 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--channels/chan_phone.c2
1 files changed, 1 insertions, 1 deletions
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);