MODENDP-245 BIGENDIAN Windows Bug

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15410 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Jeff Lenk
2009-11-10 17:28:39 +00:00
parent 80922afddc
commit 5314971b8c
4 changed files with 9 additions and 9 deletions
@@ -318,7 +318,7 @@ static switch_status_t channel_read_frame(switch_core_session_t *session, switch
continue;
}
*frame = &tech_pvt->read_frame;
#ifdef BIGENDIAN
#if SWITCH_BYTE_ORDER == __BIG_ENDIAN
if (switch_test_flag(tech_pvt, TFLAG_LINEAR)) {
switch_swap_linear((*frame)->data, (int) (*frame)->datalen / 2);
}
@@ -358,7 +358,7 @@ static switch_status_t channel_write_frame(switch_core_session_t *session, switc
if (!switch_test_flag(tech_pvt, TFLAG_IO)) {
return SWITCH_STATUS_FALSE;
}
#ifdef BIGENDIAN
#if SWITCH_BYTE_ORDER == __BIG_ENDIAN
if (switch_test_flag(tech_pvt, TFLAG_LINEAR)) {
switch_swap_linear(frame->data, (int) frame->datalen / 2);
}