summaryrefslogtreecommitdiff
path: root/channels/chan_phone.c
diff options
context:
space:
mode:
authorDavid Vossel <dvossel@digium.com>2011-02-15 18:09:25 +0000
committerDavid Vossel <dvossel@digium.com>2011-02-15 18:09:25 +0000
commit64ed1ba3e9da013d0c1b26047db88108b8ffb1c5 (patch)
tree79c811d56f9da08e8a0bea3fd8dbac6cc7d5476c /channels/chan_phone.c
parentb2ef13cb609b31702cfd34063712848d41575421 (diff)
Fixes compile error in chan_phone for big endian
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@307927 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_phone.c')
-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 4897775cc..6b7420198 100644
--- a/channels/chan_phone.c
+++ b/channels/chan_phone.c
@@ -819,7 +819,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.codec == AST_FORMAT_SLINEAR)
+ if (frame->subclass.format.id == AST_FORMAT_SLINEAR)
swap = 1; /* Swap big-endian samples to little-endian as we copy */
#endif
res = phone_write_buf(p, pos, expected, maxfr, swap);