Syntax, clean up

This commit is contained in:
MelwareDE 2010-05-26 14:40:57 +00:00
parent dd6f38593c
commit 57b9aa8bec
2 changed files with 6 additions and 3 deletions

View File

@ -39,6 +39,7 @@
#include "chan_capi_supplementary.h"
#include "chan_capi_chat.h"
#include "chan_capi_command.h"
struct _diva_streaming_vector* vind;
#ifdef DIVA_STREAMING
#include "platform.h"
#include "diva_streaming_result.h"
@ -4246,8 +4247,8 @@ static void capidev_handle_data_b3_indication(_cmsg *CMSG,
b3len = DATA_B3_IND_DATALENGTH(CMSG);
memcpy(b3buf, (char *)DATA_B3_IND_DATA(CMSG), b3len);
} else {
dword i = 0, k = 0;
#ifdef DIVA_STREAMING
dword i = 0, k = 0;
b3len = (int)diva_streaming_read_vector_data (vind, vind_nr, &i, &k, b3buf, CAPI_MAX_B3_BLOCK_SIZE);
#endif
}
@ -4352,7 +4353,7 @@ static void capidev_handle_data_b3_indication(_cmsg *CMSG,
return;
}
#ifdef DIVA_STREAMING
#if defined(DIVA_STREAMING)
void capidev_handle_data_b3_indication_vector (struct capi_pvt *i,
struct _diva_streaming_vector* vind,
int vind_nr)

View File

@ -1250,9 +1250,11 @@ void capi_DivaStreamingOn(struct capi_pvt *i)
ret = diva_stream_create (&pE->diva_stream, NULL, 255, divaStreamingMessageRx, pE, trace_ident);
if (ret == 0) {
const byte* description = pE->diva_stream->description (pE->diva_stream);
byte* description = (byte*)pE->diva_stream->description (pE->diva_stream);
MESSAGE_EXCHANGE_ERROR error;
description[3] |= 0x01;
cc_mutex_lock(&capi_put_lock);
error = capi_sendf (NULL, 0, CAPI_MANUFACTURER_REQ, i->PLCI, get_capi_MessageNumber(),
"dws", _DI_MANU_ID, _DI_STREAM_CTRL, description);