/usr/include/sipxtapi/mp/MpBridgeAlgLinear.h is in libsipxtapi-dev 3.3.0~test17-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 | //
// Copyright (C) 2008-2012 SIPez LLC. All rights reserved.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// Copyright (C) 2008 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// $$
//////////////////////////////////////////////////////////////////////////////
// Author: Alexander Chemeris <Alexander DOT Chemeris AT SIPez DOT com>
#ifndef _MpBridgeAlgLinear_h_
#define _MpBridgeAlgLinear_h_
// SYSTEM INCLUDES
// APPLICATION INCLUDES
#include <mp/MpBridgeAlgBase.h>
#include <os/OsSysLog.h>
// DEFINES
#define TEST_PRINT_MIXING
#undef TEST_PRINT_MIXING
#define TEST_PRINT_MIXING_BINARY
#undef TEST_PRINT_MIXING_BINARY
#define TEST_PRINT_MIXING_CONTRIBUTORS
#undef TEST_PRINT_MIXING_CONTRIBUTORS
// MACROS
// EXTERNAL FUNCTIONS
// EXTERNAL VARIABLES
// STRUCTS
// TYPEDEFS
// FORWARD DECLARATIONS
/**
* @brief Brief description.
*
* Long description here.
* Even multiline.
*/
class MpBridgeAlgLinear : public MpBridgeAlgBase
{
/* //////////////////////////////// PUBLIC //////////////////////////////// */
public:
/* =============================== CREATORS =============================== */
///@name Creators
//@{
/// Constructor.
MpBridgeAlgLinear(int inputs, int outputs, UtlBoolean mixSilence,
int samplesPerFrame);
/// Destructor.
~MpBridgeAlgLinear();
//@}
/* ============================= MANIPULATORS ============================= */
///@name Manipulators
//@{
/// @copydoc MpBridgeAlgBase::doMix()
UtlBoolean doMix(MpBufPtr inBufs[], int inBufsSize,
MpBufPtr outBufs[], int outBufsSize,
int samplesPerFrame);
/// @copydoc MpBridgeAlgBase::setGainMatrixValue()
void setGainMatrixValue(int column, int row, MpBridgeGain val);
/// @copydoc MpBridgeAlgBase::setGainMatrixRow()
void setGainMatrixRow(int row, int numValues, const MpBridgeGain val[]);
/// @copydoc MpBridgeAlgBase::setGainMatrixColumn()
void setGainMatrixColumn(int column, int numValues, const MpBridgeGain val[]);
//@}
/* ============================== ACCESSORS =============================== */
///@name Accessors
//@{
/// Dump the mix matrix to log
void dumpOutputMix(UtlString& dumpString);
//@}
/* =============================== INQUIRY ================================ */
///@name Inquiry
//@{
//@}
/* ////////////////////////////// PROTECTED /////////////////////////////// */
protected:
/* ============================ Extended inputs =========================== */
///@name Extended inputs
//@{
struct ExtendedInputs
{
ExtendedInputs()
: mExtendedInputsNum(0)
, mInputsNum(0)
, mOutputsNum(0)
, mpExtendedInputsMap(NULL)
, mpExtendedInputsInfo(NULL)
{};
~ExtendedInputs()
{
delete[] mpExtendedInputsMap;
delete[] mpExtendedInputsInfo;
}
/// @brief Initialize extended inputs, assuming simple bridge matrix
/// case (inversed unity matrix).
inline void init_simple(int numInputs, int numOutputs)
{
// Init array sizes
mInputsNum = numInputs;
mOutputsNum = numOutputs;
assert(mInputsNum == mOutputsNum);
// Each input could not be replicated more then mOutputsNum times.
mExtendedInputsNum = mInputsNum*mOutputsNum;
// Allocate arrays
mpExtendedInputsMap = new int[mInputsNum*mOutputsNum];
mpExtendedInputsInfo = new ExtendedInputInfo[mExtendedInputsNum];
// Fill arrays with data
int *pTmpInputsMapPtr = mpExtendedInputsMap;
int input;
for (input=0; input<mInputsNum; input++)
{
// Fill mpExtendedInputsMap row
int output;
for (output=0; output<input; output++)
{
*pTmpInputsMapPtr = input;
pTmpInputsMapPtr++;
}
// This one is muted
*pTmpInputsMapPtr = -1;
pTmpInputsMapPtr++;
for (output=input+1; output<mOutputsNum; output++)
{
*pTmpInputsMapPtr = input;
pTmpInputsMapPtr++;
}
}
// Fill mpExtendedInputsInfo.
for (input=0; input<mInputsNum; input++)
{
mpExtendedInputsInfo[input].mInput = input;
mpExtendedInputsInfo[input].mGain = MP_BRIDGE_GAIN_PASSTHROUGH;
mpExtendedInputsInfo[input].mRefCounter = mOutputsNum-1;
}
for (input=mInputsNum; input<mExtendedInputsNum; input++)
{
mpExtendedInputsInfo[input].mInput = -1;
mpExtendedInputsInfo[input].mGain = MP_BRIDGE_GAIN_MUTED;
mpExtendedInputsInfo[input].mRefCounter = 0;
}
}
inline void setGain(int input, int output, MpBridgeGain gain)
{
assert(input < mInputsNum && output < mOutputsNum);
assert(input >= 0);
assert(output >= 0);
int extendedInput = mpExtendedInputsMap[input*mOutputsNum + output];
if (extendedInput >= 0)
{
if(mpExtendedInputsInfo[extendedInput].mRefCounter <= 0)
{
OsSysLog::add(FAC_MP, PRI_DEBUG,
"ExtendedInputs::setGain(in=%d, out=%d, gain=%d) mRefCounter: %d",
input, output, gain, mpExtendedInputsInfo[extendedInput].mRefCounter);
OsSysLog::flush();
}
assert(mpExtendedInputsInfo[extendedInput].mRefCounter > 0);
mpExtendedInputsInfo[extendedInput].mRefCounter--;
}
if (gain != MP_BRIDGE_GAIN_MUTED)
{
extendedInput = addExtendedInput(input, gain);
assert(extendedInput >= 0);
mpExtendedInputsMap[input*mOutputsNum + output] = extendedInput;
}
else
{
mpExtendedInputsMap[input*mOutputsNum + output] = -1;
}
}
inline int searchForExtendedInput(int input, MpBridgeGain gain) const
{
for (int i=0; i<mExtendedInputsNum; i++)
{
if ( mpExtendedInputsInfo[i].mInput == input
&& mpExtendedInputsInfo[i].mGain == gain)
{
// Found it.
return i;
}
}
// Have not found it.
return -1;
}
inline int addExtendedInput(int input, MpBridgeGain gain)
{
int lastEmptySlot=-1;
// Look for existing extended input and for first empty slot (just
// in case)
int i;
for (i=0; i<mExtendedInputsNum; i++)
{
if ( mpExtendedInputsInfo[i].mInput == input
&& mpExtendedInputsInfo[i].mGain == gain)
{
// Found existing extended input.
mpExtendedInputsInfo[i].mRefCounter++;
return i;
}
if (mpExtendedInputsInfo[i].mRefCounter == 0)
{
// Found it.
lastEmptySlot = i;
break;
}
}
// If we still have not found existing extended output, continue on.
// (seems we found empty slot, though)
for (; i<mExtendedInputsNum; i++)
{
if ( mpExtendedInputsInfo[i].mInput == input
&& mpExtendedInputsInfo[i].mGain == gain)
{
// Found existing extended input.
mpExtendedInputsInfo[i].mRefCounter++;
return i;
}
}
// At this point existing extended input is not found, so we should
// have empty slot to add new one.
assert(lastEmptySlot>=0);
// Add new extended input.
mpExtendedInputsInfo[lastEmptySlot].mRefCounter = 1;
mpExtendedInputsInfo[lastEmptySlot].mInput = input;
mpExtendedInputsInfo[lastEmptySlot].mGain = gain;
// Have not found it.
return lastEmptySlot;
}
inline int getExtendedInputsNum() const
{
return mExtendedInputsNum;
}
inline int getOrigin(int extendedInput) const
{
return mpExtendedInputsInfo[extendedInput].mInput;
}
inline int getGain(int extendedInput) const
{
return mpExtendedInputsInfo[extendedInput].mGain;
}
inline bool isNotMuted(int extendedInput) const
{
return (mpExtendedInputsInfo[extendedInput].mRefCounter > 0) &&
(mpExtendedInputsInfo[extendedInput].mGain != MP_BRIDGE_GAIN_MUTED);
}
inline int getExtendedInput(int origInput, int output) const
{
return mpExtendedInputsMap[origInput*mOutputsNum + output];
}
protected:
struct ExtendedInputInfo
{
int mInput; ///< Index of original input for this extended input.
MpBridgeGain mGain; ///< Gain applied to this extended input.
int mRefCounter; ///< Number of original inputs, referencing this
///< extended input.
};
int mExtendedInputsNum; ///< Size of mpExtendedInputsInfo array.
int mInputsNum; ///< Number of outputs.
int mOutputsNum; ///< Number of outputs.
int* mpExtendedInputsMap; ///< This array is a twin of
///< mpGainMatrix. Each element is an index of
///< corresponding extended input (in mpExtendedInputs
///< array). Have size of mInputsNum x mOutputsNum.
ExtendedInputInfo* mpExtendedInputsInfo; ///< Array with size of
///< mExtendedInputsNum, storing info about extended
///< inputs.
};
ExtendedInputs mExtendedInputs; ///< Storage for all extended inputs data.
//@}
/* ============================= Active inputs ============================ */
///@name Active inputs
//@{
int mActiveInputsListSize; ///< Length of mpActiveInputsList array.
int* mpActiveInputsList; ///< Store the list of active extended
///< inputs. Used in doMix() only.
//@}
/* ============================== Mix Engine ============================== */
///@name Mix Engine
//@{
struct MixAction
{
enum Type
{
DO_MIX,
COPY_TO_OUTPUT,
COPY_FROM_INPUT,
NO_OPERATION
};
Type mType;
int mSrc1;
int mSrc2;
int mDst;
};
int mMixActionsStackLength;
int mMixActionsStackTop;
MixAction* mpMixActionsStack;
int mMixDataStackStep;
int mMixDataStackLength;
MpBridgeAccum* mpMixDataStackTop;
MpBridgeAccum* mpMixDataStack;
MpSpeechType* mpMixDataSpeechType; ///< Speech type of data frames in mpMixDataStack
MpBridgeAccum* mpMixDataAmplitude; ///< Amplitude of data frames in mpMixDataStack
int mMixDataInfoStackStep;
int mMixDataInfoStackLength;
int* mpMixDataInfoStackTop;
int* mpMixDataInfoStack;
int mMixDataInfoProcessedStackLength;
int mMixDataInfoProcessedStackTop;
int* mpMixDataInfoProcessedStack;
#ifdef TEST_PRINT_MIXING // [
#ifdef TEST_PRINT_MIXING_BINARY // [
# define PRINT_DATA_SET(printString, offset) \
for (int i=0; i<mMixDataInfoStackStep; i++) \
{ \
printString.appendFormat(" %d", mpMixDataInfoStack[mMixDataInfoStackStep*offset + i]); \
}
# define PRINT_DATA_SET_TOP(printString) \
for (int i=0; i<mMixDataInfoStackStep; i++) \
{ \
printString.appendFormat(" %d", mpMixDataInfoStackTop[i]); \
}
#else // TEST_PRINT_MIXING_BINARY ][
# define PRINT_DATA_SET(printString, offset) \
for (int i=0; i<mMixDataInfoStackStep; i++) \
{ \
if (mpMixDataInfoStack[mMixDataInfoStackStep*offset + i] > 0) \
{ \
printString.appendFormat(" %d", i); \
} \
}
# define PRINT_DATA_SET_TOP(printString) \
for (int i=0; i<mMixDataInfoStackStep; i++) \
{ \
if (mpMixDataInfoStackTop[i] > 0) \
{ \
printString.appendFormat(" %d", i); \
} \
}
#endif //TEST_PRINT_MIXING_BINARY ]
# define PRINT_TOP_MIX_DATA() \
{ \
UtlString printString; \
printString.appendFormat("pushed data %2d: [", mMixDataInfoProcessedStackTop); \
PRINT_DATA_SET_TOP(printString) \
OsSysLog::add(FAC_MP, PRI_DEBUG, "%s]\n", printString.data()); \
}
#else // TEST_PRINT_MIXING ][
# define PRINT_TOP_MIX_DATA()
#endif // TEST_PRINT_MIXING ]
inline void initMixActions()
{
mMixActionsStackTop = 0;
}
inline void pushMixAction(MixAction::Type type, int src1, int src2, int dst)
{
assert(mMixActionsStackTop<mMixActionsStackLength);
mpMixActionsStack[mMixActionsStackTop].mType = type;
mpMixActionsStack[mMixActionsStackTop].mSrc1 = src1;
mpMixActionsStack[mMixActionsStackTop].mSrc2 = src2;
mpMixActionsStack[mMixActionsStackTop].mDst = dst;
mMixActionsStackTop++;
}
inline void pushMixActionCopyToOutput(int src, int dst)
{
#ifdef TEST_PRINT_MIXING // [
UtlString printString;
printString.appendFormat("COPY_TO_OUTPUT: %2d -> %2d [", src, dst);
PRINT_DATA_SET(printString, src);
printString.append("]\n");
OsSysLog::add(FAC_MP, PRI_DEBUG, "MpBridgeAlgLinear::pushMixActionCopyToOutput\n%s", printString.data());
#endif // TEST_PRINT_MIXING ]
pushMixAction(MixAction::COPY_TO_OUTPUT, src, -1, dst);
}
inline void pushMixActionCopyFromInput(int src, int dst)
{
#ifdef TEST_PRINT_MIXING // [
UtlString printString;
printString.appendFormat("COPY_FROM_INPUT: %2d <- %2d [", dst, src);
PRINT_DATA_SET(printString, dst);
printString.append("]\n");
OsSysLog::add(FAC_MP, PRI_DEBUG, "MpBridgeAlgLinear::pushMixActionCopyFromInput\n%s", printString.data());
#endif // TEST_PRINT_MIXING ]
// No real need to do this. Enable if you want debug.
//mpMixDataInfoProcessedStack[src] = mMixActionsStackTop;
pushMixAction(MixAction::COPY_FROM_INPUT, src, -1, dst);
}
inline void pushMixActionMix(int src1, int src2, int dst)
{
#ifdef TEST_PRINT_MIXING // [
UtlString printString;
printString.appendFormat("DO_MIX: %2d + %2d -> %2d [", src1, src2, dst);
PRINT_DATA_SET(printString, src1);
printString.append("] + [");
PRINT_DATA_SET(printString, src2);
printString.append("] -> [");
PRINT_DATA_SET(printString, dst);
printString.append("]\n");
OsSysLog::add(FAC_MP, PRI_DEBUG, "MpBridgeAlgLinear::pushMixActionMix\n%s", printString.data());
#endif // TEST_PRINT_MIXING ]
mpMixDataInfoProcessedStack[dst] = mMixActionsStackTop;
pushMixAction(MixAction::DO_MIX, src1, src2, dst);
}
inline void moveTopMixActionMix(int dst)
{
int action = mpMixDataInfoProcessedStack[dst];
#ifdef TEST_PRINT_MIXING // [
OsSysLog::add(FAC_MP, PRI_DEBUG,
"MpBridgeAlgLinear::moveTopMixActionMix\npull: %2d + %2d -> %2d\n",
mpMixActionsStack[action].mSrc1,
mpMixActionsStack[action].mSrc2,
mpMixActionsStack[action].mDst);
#endif // TEST_PRINT_MIXING ]
mpMixDataInfoProcessedStack[dst] = mMixActionsStackTop;
pushMixAction(MixAction::DO_MIX,
mpMixActionsStack[action].mSrc1,
mpMixActionsStack[action].mSrc2,
mpMixActionsStack[action].mDst);
mpMixActionsStack[action].mDst = MixAction::NO_OPERATION;
}
inline void initMixDataInfoStack(int step)
{
mpMixDataInfoStackTop = mpMixDataInfoStack;
mMixDataInfoStackStep = step;
mMixDataInfoProcessedStackTop = 0;
}
inline void initMixDataStack()
{
mpMixDataStackTop = mpMixDataStack;
}
inline bool searchClosestUnprocessedData(int *pDataInfoStackPtr,
int *pStartDataInfoStackPtr,
int startDataInfoStackPos,
int *&pFoundDataInfoStackPtr,
int &foundDataInfoStackPos)
{
int *pTmpPtr;
int tmpPos;
int foundCommonDataBitCounter = 0;
int foundFirstDataDiffBitCounter = 0;
int foundSecondDataDiffBitCounter = 0;
pFoundDataInfoStackPtr = pStartDataInfoStackPtr;
foundDataInfoStackPos = startDataInfoStackPos;
for (pTmpPtr = pStartDataInfoStackPtr, tmpPos=startDataInfoStackPos;
pTmpPtr < mpMixDataInfoStackTop;
pTmpPtr += mMixDataInfoStackStep, tmpPos++)
{
// Compare data sets if not processed yet and not equal to original
// data set.
if (mpMixDataInfoProcessedStack[tmpPos]<0 &&
(pDataInfoStackPtr != pTmpPtr))
{
int commonDataBitCounter = 0;
int firstDataDiffBitCounter = 0;
int secondDataDiffBitCounter = 0;
// Calculate common part, first only part and second only part.
for (int i=0; i<mMixDataInfoStackStep; i++)
{
commonDataBitCounter += pDataInfoStackPtr[i] & pTmpPtr[i];
firstDataDiffBitCounter += pDataInfoStackPtr[i] & !pTmpPtr[i];
secondDataDiffBitCounter += !pDataInfoStackPtr[i] & pTmpPtr[i];
}
// Is this pair better then previous?
if (commonDataBitCounter > foundCommonDataBitCounter &&
firstDataDiffBitCounter < commonDataBitCounter &&
secondDataDiffBitCounter < commonDataBitCounter)
{
pFoundDataInfoStackPtr = pTmpPtr;
foundDataInfoStackPos = tmpPos;
foundCommonDataBitCounter = commonDataBitCounter;
foundFirstDataDiffBitCounter = firstDataDiffBitCounter;
foundSecondDataDiffBitCounter = secondDataDiffBitCounter;
// Stop processing if close enough data set found.
if ((foundFirstDataDiffBitCounter < 2) &&
(foundSecondDataDiffBitCounter < 2))
{
break;
}
}
}
}
return (foundCommonDataBitCounter > 0);
}
inline void searchExistingData(int *pDataInfoStackPtr,
int &foundDataInfoStackPos)
{
int *pTmpPtr;
int tmpPos;
for (pTmpPtr = mpMixDataInfoStack, tmpPos=0;
;
pTmpPtr += mMixDataInfoStackStep, tmpPos++)
{
int input=0;
while (input<mMixDataInfoStackStep &&
pDataInfoStackPtr[input] == pTmpPtr[input])
{
input++;
}
if (input == mMixDataInfoStackStep)
{
foundDataInfoStackPos = tmpPos;
return;
}
}
}
inline void searchExistingUnprocessedData(int *pDataInfoStackPtr,
int &foundDataInfoStackPos,
int ignoreDataInfoStackLevel)
{
int *pTmpPtr;
int tmpPos;
for (pTmpPtr = mpMixDataInfoStack, tmpPos=0;
;
pTmpPtr += mMixDataInfoStackStep, tmpPos++)
{
if (mpMixDataInfoProcessedStack[tmpPos] < 0 ||
tmpPos < ignoreDataInfoStackLevel)
{
// This is unprocessed data. Try it.
int input=0;
while (input<mMixDataInfoStackStep &&
pDataInfoStackPtr[input] == pTmpPtr[input])
{
input++;
}
if (input == mMixDataInfoStackStep)
{
// Found! Return value.
foundDataInfoStackPos = tmpPos;
return;
}
}
}
}
inline bool searchData(int *pDataInfoStackPtr,
int &foundDataInfoStackPos)
{
int *pTmpPtr;
int tmpPos;
for (pTmpPtr = mpMixDataInfoStack, tmpPos=0;
pTmpPtr < mpMixDataInfoStackTop;
pTmpPtr += mMixDataInfoStackStep, tmpPos++)
{
int input=0;
while (input<mMixDataInfoStackStep &&
pDataInfoStackPtr[input] == pTmpPtr[input])
{
input++;
}
if (input == mMixDataInfoStackStep)
{
foundDataInfoStackPos = tmpPos;
return true;
}
}
return false;
}
inline void moveDataUp(int startDataInfoStackPos, int dataInfoStackPos)
{
if (mpMixDataInfoProcessedStack[dataInfoStackPos] >= 0 &&
dataInfoStackPos >= startDataInfoStackPos)
{
// If this output was already processed - swap commands.
moveTopMixActionMix(dataInfoStackPos);
}
}
//@}
/* /////////////////////////////// PRIVATE //////////////////////////////// */
private:
};
/* ============================ INLINE METHODS ============================ */
#endif // _MpBridgeAlgLinear_h_
|