2006-12-18 15:39:33 +01:00
|
|
|
/******************************************************************************\
|
2011-02-22 19:56:52 +01:00
|
|
|
* Copyright (c) 2004-2011
|
2006-12-18 15:39:33 +01:00
|
|
|
*
|
|
|
|
* Author(s):
|
2006-11-25 15:46:57 +01:00
|
|
|
* Volker Fischer
|
2006-01-28 12:29:22 +01:00
|
|
|
*
|
2010-01-03 17:01:43 +01:00
|
|
|
* Note: We are assuming here that put and get operations are secured by a mutex
|
|
|
|
* and accessing does not occur at the same time.
|
2006-12-18 15:39:33 +01:00
|
|
|
*
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
|
|
* the terms of the GNU General Public License as published by the Free Software
|
2010-01-03 14:29:42 +01:00
|
|
|
* Foundation; either version 2 of the License, or (at your option) any later
|
2006-12-18 15:39:33 +01:00
|
|
|
* version.
|
|
|
|
*
|
2010-01-03 14:29:42 +01:00
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
2006-12-18 15:39:33 +01:00
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
2010-01-03 14:29:42 +01:00
|
|
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
2006-12-18 15:39:33 +01:00
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
2010-01-03 14:29:42 +01:00
|
|
|
* this program; if not, write to the Free Software Foundation, Inc.,
|
2006-12-18 15:39:33 +01:00
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
\******************************************************************************/
|
|
|
|
|
|
|
|
#include "buffer.h"
|
|
|
|
|
|
|
|
|
2011-05-13 21:00:16 +02:00
|
|
|
/* Network buffer implementation **********************************************/
|
2011-05-17 17:39:33 +02:00
|
|
|
void CNetBuf::Init ( const int iNewBlockSize,
|
|
|
|
const int iNewNumBlocks,
|
|
|
|
const bool bPreserve )
|
2010-02-03 20:27:48 +01:00
|
|
|
{
|
|
|
|
// store block size value
|
|
|
|
iBlockSize = iNewBlockSize;
|
|
|
|
|
2011-05-13 20:23:00 +02:00
|
|
|
// total size -> size of one block times the number of blocks
|
2011-05-17 17:39:33 +02:00
|
|
|
CBufferBase<uint8_t>::Init ( iNewBlockSize * iNewNumBlocks, bPreserve );
|
2010-02-03 20:27:48 +01:00
|
|
|
|
|
|
|
// use the "get" flag to make sure the buffer is cleared
|
2011-05-17 17:39:33 +02:00
|
|
|
if ( !bPreserve )
|
|
|
|
{
|
|
|
|
Clear ( CT_GET );
|
|
|
|
}
|
2010-02-03 20:27:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CNetBuf::Put ( const CVector<uint8_t>& vecbyData,
|
2011-05-13 20:23:00 +02:00
|
|
|
const int iInSize )
|
2010-02-03 20:27:48 +01:00
|
|
|
{
|
|
|
|
bool bPutOK = true;
|
|
|
|
|
|
|
|
// Check if there is not enough space available -> correct
|
|
|
|
if ( GetAvailSpace() < iInSize )
|
|
|
|
{
|
|
|
|
// not enough space in buffer for put operation, correct buffer to
|
|
|
|
// prepare for new data
|
|
|
|
Clear ( CT_PUT );
|
|
|
|
|
|
|
|
bPutOK = false; // return error flag
|
|
|
|
|
|
|
|
// check for special case: buffer memory is not sufficient
|
|
|
|
if ( iInSize > iMemSize )
|
|
|
|
{
|
|
|
|
// do nothing here, just return error code
|
|
|
|
return bPutOK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// copy new data in internal buffer (implemented in base class)
|
|
|
|
CBufferBase<uint8_t>::Put ( vecbyData, iInSize );
|
|
|
|
|
|
|
|
return bPutOK;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CNetBuf::Get ( CVector<uint8_t>& vecbyData )
|
|
|
|
{
|
|
|
|
bool bGetOK = true; // init return value
|
|
|
|
|
|
|
|
// get size of data to be get from the buffer
|
|
|
|
const int iInSize = vecbyData.Size();
|
|
|
|
|
|
|
|
// check size
|
|
|
|
if ( ( iInSize == 0 ) || ( iInSize != iBlockSize ) )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check for invalid data in buffer
|
|
|
|
if ( iNumInvalidElements > 0 )
|
|
|
|
{
|
|
|
|
// decrease number of invalid elements by the queried number (input
|
|
|
|
// size)
|
|
|
|
iNumInvalidElements -= iInSize;
|
|
|
|
|
|
|
|
bGetOK = false; // return error flag
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if there is not enough data available -> correct
|
|
|
|
if ( GetAvailData() < iInSize )
|
|
|
|
{
|
|
|
|
// not enough data in buffer for get operation, correct buffer to
|
|
|
|
// prepare for getting data
|
|
|
|
Clear ( CT_GET );
|
|
|
|
|
|
|
|
bGetOK = false; // return error flag
|
|
|
|
|
|
|
|
// check for special case: buffer memory is not sufficient
|
|
|
|
if ( iInSize > iMemSize )
|
|
|
|
{
|
|
|
|
// do nothing here, just return error code
|
|
|
|
return bGetOK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// copy data from internal buffer in output buffer (implemented in base
|
|
|
|
// class)
|
|
|
|
CBufferBase<uint8_t>::Get ( vecbyData );
|
|
|
|
|
|
|
|
return bGetOK;
|
|
|
|
}
|
|
|
|
|
2007-09-08 12:45:14 +02:00
|
|
|
void CNetBuf::Clear ( const EClearType eClearType )
|
2006-01-28 12:29:22 +01:00
|
|
|
{
|
2010-01-03 14:29:42 +01:00
|
|
|
// Define the number of blocks bound for the "random offset" (1) algorithm.
|
|
|
|
// If we are above the bound, we use the "middle of buffer" (2) algorithm.
|
2010-01-03 17:01:43 +01:00
|
|
|
//
|
2010-01-03 14:29:42 +01:00
|
|
|
// Test results (with different jitter buffer sizes), given is the error
|
|
|
|
// probability of jitter buffer (probability of corrections in the buffer):
|
|
|
|
// kX, 128 samples, WLAN:
|
|
|
|
// 2: (1) 5 %, (2) 12.3 %
|
|
|
|
// 3: (1) 18.3 %, (2) 17.1 %
|
|
|
|
// 5: (1) 0.9 %, (2) 0.8 %
|
|
|
|
// kX, 128 samples, localhost:
|
|
|
|
// 2: (1) 2.5 %, (2) 13 %
|
|
|
|
// 3: (1) 0.9 %, (2) 1.1 %
|
|
|
|
// 5: (1) 0.7 %, (2) 0.6 %
|
|
|
|
// Behringer, 128 samples, WLAN:
|
|
|
|
// 2: (1) 5.8 %, (2) 9.4 %
|
|
|
|
// 3: (1) 0.9 %, (2) 0.8 %
|
|
|
|
// 5: (1) 0.4 %, (2) 0.3 %
|
|
|
|
// Behringer, 128 samples, localhost:
|
|
|
|
// 2: (1) 1 %, (2) 9.8 %
|
|
|
|
// 3: (1) 0.57 %, (2) 0.6 %
|
|
|
|
// 5: (1) 0.6 %, (2) 0.56 %
|
|
|
|
// kX, 256 samples, WLAN:
|
|
|
|
// 3: (1) 24.2 %, (2) 18.4 %
|
|
|
|
// 4: (1) 1.5 %, (2) 2.5 %
|
|
|
|
// 5: (1) 1 %, (2) 1 %
|
|
|
|
// ASIO4All, 256 samples, WLAN:
|
|
|
|
// 3: (1) 14.9 %, (2) 11.9 %
|
|
|
|
// 4: (1) 1.5 %, (2) 7 %
|
|
|
|
// 5: (1) 1.2 %, (2) 1.3 %
|
|
|
|
const int iNumBlocksBoundInclForRandom = 4; // by extensive testing: 4
|
2009-12-31 13:58:12 +01:00
|
|
|
|
|
|
|
int iNewFillLevel = 0;
|
2006-01-28 12:29:22 +01:00
|
|
|
|
2009-08-02 19:44:45 +02:00
|
|
|
if ( iBlockSize != 0 )
|
|
|
|
{
|
2010-01-03 14:29:42 +01:00
|
|
|
const int iNumBlocks = iMemSize / iBlockSize;
|
|
|
|
if ( iNumBlocks <= iNumBlocksBoundInclForRandom ) // just for small buffers
|
|
|
|
{
|
2010-01-03 17:01:43 +01:00
|
|
|
// Random position algorithm.
|
2010-01-03 14:29:42 +01:00
|
|
|
// overwrite fill level with random value, the range
|
|
|
|
// is 0 to (iMemSize - iBlockSize)
|
|
|
|
iNewFillLevel = static_cast<int> ( static_cast<double> ( rand() ) *
|
|
|
|
iNumBlocks / RAND_MAX ) * iBlockSize;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-01-03 17:01:43 +01:00
|
|
|
// Middle of buffer algorithm.
|
2010-01-03 14:29:42 +01:00
|
|
|
// with the following operation we set the fill level to a block
|
|
|
|
// boundary (one block below the middle of the buffer in case of odd
|
|
|
|
// number of blocks, e.g.:
|
|
|
|
// [buffer size]: [get pos]
|
|
|
|
// 1: 0 / 2: 0 / 3: 1 / 4: 1 / 5: 2 ...)
|
|
|
|
iNewFillLevel =
|
|
|
|
( ( ( iMemSize - iBlockSize) / 2 ) / iBlockSize ) * iBlockSize;
|
|
|
|
}
|
2009-08-02 19:44:45 +02:00
|
|
|
}
|
2007-09-08 12:45:14 +02:00
|
|
|
|
2007-12-31 14:09:12 +01:00
|
|
|
// different behaviour for get and put corrections
|
2007-09-08 12:45:14 +02:00
|
|
|
if ( eClearType == CT_GET )
|
2006-12-18 15:39:33 +01:00
|
|
|
{
|
2009-12-31 13:58:12 +01:00
|
|
|
// clear buffer since we had a buffer underrun
|
2011-05-18 08:55:43 +02:00
|
|
|
vecMemory.Reset ( 0 );
|
2006-12-18 15:39:33 +01:00
|
|
|
|
2009-12-31 17:58:48 +01:00
|
|
|
// reset buffer pointers so that they are at maximum distance after
|
|
|
|
// the get operation (assign new fill level value to the get pointer)
|
2006-12-18 15:39:33 +01:00
|
|
|
iPutPos = 0;
|
2009-12-31 13:58:12 +01:00
|
|
|
iGetPos = iNewFillLevel;
|
2006-11-25 15:46:57 +01:00
|
|
|
|
2009-08-22 18:13:21 +02:00
|
|
|
// The buffer was cleared, the next time blocks are read from the
|
|
|
|
// buffer, these are invalid ones. Calculate the number of invalid
|
|
|
|
// elements
|
2009-12-31 13:58:12 +01:00
|
|
|
iNumInvalidElements = iMemSize - iNewFillLevel;
|
2009-08-22 18:13:21 +02:00
|
|
|
|
2009-08-02 09:54:15 +02:00
|
|
|
// check for special case
|
2007-09-08 12:45:14 +02:00
|
|
|
if ( iPutPos == iGetPos )
|
2009-02-22 12:07:18 +01:00
|
|
|
{
|
2006-11-25 15:46:57 +01:00
|
|
|
eBufState = CNetBuf::BS_FULL;
|
2009-02-22 12:07:18 +01:00
|
|
|
}
|
2006-11-25 15:46:57 +01:00
|
|
|
else
|
2009-02-22 12:07:18 +01:00
|
|
|
{
|
2006-11-25 15:46:57 +01:00
|
|
|
eBufState = CNetBuf::BS_OK;
|
2009-02-22 12:07:18 +01:00
|
|
|
}
|
2006-11-25 15:46:57 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-12-31 14:09:12 +01:00
|
|
|
// in case of "put" correction, do not delete old data but only shift
|
|
|
|
// the pointers
|
2009-12-31 13:58:12 +01:00
|
|
|
iPutPos = iNewFillLevel;
|
2006-11-25 15:46:57 +01:00
|
|
|
|
2007-12-31 14:09:12 +01:00
|
|
|
// adjust put pointer relative to current get pointer, take care of
|
|
|
|
// wrap around
|
2006-11-25 15:46:57 +01:00
|
|
|
iPutPos += iGetPos;
|
2007-09-08 12:45:14 +02:00
|
|
|
if ( iPutPos > iMemSize )
|
2009-02-22 12:07:18 +01:00
|
|
|
{
|
2006-11-25 15:46:57 +01:00
|
|
|
iPutPos -= iMemSize;
|
2009-02-22 12:07:18 +01:00
|
|
|
}
|
2006-11-25 15:46:57 +01:00
|
|
|
|
2009-08-22 18:13:21 +02:00
|
|
|
// in case of put correction, no invalid blocks are inserted
|
|
|
|
iNumInvalidElements = 0;
|
|
|
|
|
2007-12-31 14:09:12 +01:00
|
|
|
// check for special case
|
2007-09-08 12:45:14 +02:00
|
|
|
if ( iPutPos == iGetPos )
|
2006-11-25 15:46:57 +01:00
|
|
|
{
|
|
|
|
eBufState = CNetBuf::BS_EMPTY;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
eBufState = CNetBuf::BS_OK;
|
|
|
|
}
|
|
|
|
}
|
2006-12-18 15:39:33 +01:00
|
|
|
}
|