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

View File

@ -636,9 +636,9 @@ static switch_status_t channel_read_frame(switch_core_session_t *session, switch
tech_pvt->read_frame->codec = &tech_pvt->read_codec;
*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);
switch_swap_linear((*frame)->data, (int) (*frame)->datalen / 2);
}
#endif
switch_clear_flag_locked(tech_pvt, TFLAG_VOICE);
@ -674,7 +674,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);
}

View File

@ -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);
}

View File

@ -689,7 +689,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);
}
@ -733,7 +733,7 @@ static switch_status_t channel_write_frame(switch_core_session_t *session, switc
//TODO: kill the bastard
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);
}

View File

@ -1089,7 +1089,7 @@ static switch_status_t unicall_read_frame(switch_core_session_t *session, switch
if (!tech_pvt->read_frame.datalen)
continue;
*frame = &tech_pvt->read_frame;
#if defined(BIGENDIAN)
#if SWITCH_BYTE_ORDER == __BIG_ENDIAN
if (switch_test_flag(tech_pvt, TFLAG_LINEAR))
switch_swap_linear((*frame)->data, (int) (*frame)->datalen / 2);
#endif
@ -1117,7 +1117,7 @@ static switch_status_t unicall_write_frame(switch_core_session_t *session, switc
if (!switch_test_flag(tech_pvt, TFLAG_IO))
return SWITCH_STATUS_FALSE;
#if defined(BIGENDIAN)
#if SWITCH_BYTE_ORDER == __BIG_ENDIAN
if (switch_test_flag(tech_pvt, TFLAG_LINEAR))
switch_swap_linear(frame->data, (int) frame->datalen/sizeof(int16_t));
#endif