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
|
/*
* opalplugins.hpp
*
* OPAL codec plugins handler (C++ version)
*
* Open Phone Abstraction Library (OPAL)
* Formally known as the Open H323 project.
*
* Copyright (C) 2010 Vox Lucida
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Revision: 26787 $
* $Author: rjongbloed $
* $Date: 2011-12-08 18:49:50 -0600 (Thu, 08 Dec 2011) $
*/
#ifndef OPAL_CODEC_OPALPLUGIN_HPP
#define OPAL_CODEC_OPALPLUGIN_HPP
#include "opalplugin.h"
#include <string.h>
#include <stdlib.h>
#include <limits.h>
#include <map>
#include <string>
/////////////////////////////////////////////////////////////////////////////
#ifndef PLUGINCODEC_TRACING
#define PLUGINCODEC_TRACING 1
#endif
#if PLUGINCODEC_TRACING
extern PluginCodec_LogFunction PluginCodec_LogFunctionInstance;
extern int PluginCodec_SetLogFunction(const PluginCodec_Definition *, void *, const char *, void * parm, unsigned * len);
#define PLUGINCODEC_CONTROL_LOG_FUNCTION_DEF \
PluginCodec_LogFunction PluginCodec_LogFunctionInstance; \
int PluginCodec_SetLogFunction(const PluginCodec_Definition *, void *, const char *, void * parm, unsigned * len) \
{ \
if (len == NULL || *len != sizeof(PluginCodec_LogFunction)) \
return false; \
\
PluginCodec_LogFunctionInstance = (PluginCodec_LogFunction)parm; \
if (PluginCodec_LogFunctionInstance != NULL) \
PluginCodec_LogFunctionInstance(4, __FILE__, __LINE__, "Plugin", "Started logging."); \
\
return true; \
} \
#define PLUGINCODEC_CONTROL_LOG_FUNCTION_INC { PLUGINCODEC_CONTROL_SET_LOG_FUNCTION, PluginCodec_SetLogFunction },
#else
#define PLUGINCODEC_CONTROL_LOG_FUNCTION_DEF
#define PLUGINCODEC_CONTROL_LOG_FUNCTION_INC
#endif
#if !defined(PTRACE)
#if PLUGINCODEC_TRACING
#include <sstream>
#define PTRACE_CHECK(level) \
(PluginCodec_LogFunctionInstance != NULL && PluginCodec_LogFunctionInstance(level, NULL, 0, NULL, NULL))
#define PTRACE(level, section, args) \
if (PTRACE_CHECK(level)) { \
std::ostringstream strm; strm << args; \
PluginCodec_LogFunctionInstance(level, __FILE__, __LINE__, section, strm.str().c_str()); \
} else (void)0
#else
#define PTRACE_CHECK(level)
#define PTRACE(level, section, expr)
#endif
#endif
/////////////////////////////////////////////////////////////////////////////
class PluginCodec_MediaFormat
{
public:
typedef struct PluginCodec_Option const * const * OptionsTable;
typedef std::map<std::string, std::string> OptionMap;
protected:
OptionsTable m_options;
protected:
PluginCodec_MediaFormat(OptionsTable options)
: m_options(options)
{
}
public:
virtual ~PluginCodec_MediaFormat()
{
}
const void * GetOptionsTable() const { return m_options; }
/// Determine if codec is valid for the specified protocol
virtual bool IsValidForProtocol(const char * /*protocol*/)
{
return true;
}
/// Utility function to adjust option strings, used by ToNormalised()/ToCustomised().
bool AdjustOptions(void * parm, unsigned * parmLen, bool (PluginCodec_MediaFormat:: * adjuster)(OptionMap & original, OptionMap & changed))
{
if (parmLen == NULL || parm == NULL || *parmLen != sizeof(char ***)) {
PTRACE(1, "Plugin", "Invalid parameters to AdjustOptions.");
return false;
}
OptionMap originalOptions;
for (const char * const * option = *(const char * const * *)parm; *option != NULL; option += 2)
originalOptions[option[0]] = option[1];
OptionMap changedOptions;
if (!(this->*adjuster)(originalOptions, changedOptions)) {
PTRACE(1, "Plugin", "Could not normalise/customise options.");
return false;
}
char ** options = (char **)calloc(changedOptions.size()*2+1, sizeof(char *));
*(char ***)parm = options;
if (options == NULL) {
PTRACE(1, "Plugin", "Could not allocate new option lists.");
return false;
}
for (OptionMap::iterator i = changedOptions.begin(); i != changedOptions.end(); ++i) {
*options++ = strdup(i->first.c_str());
*options++ = strdup(i->second.c_str());
}
return true;
}
/// Adjust normalised options calculated from codec specific options.
virtual bool ToNormalised(OptionMap & original, OptionMap & changed) = 0;
// Adjust codec specific options calculated from normalised options.
virtual bool ToCustomised(OptionMap & original, OptionMap & changed) = 0;
static void Change(const char * value,
OptionMap & original,
OptionMap & changed,
const char * option)
{
if (original[option] != value)
changed[option] = value;
}
static unsigned String2Unsigned(const std::string & str)
{
return strtoul(str.c_str(), NULL, 10);
}
static void AppendUnsigned2String(unsigned value, std::string & str)
{
// Not very efficient, but really, really simple
if (value > 9)
AppendUnsigned2String(value/10, str);
str += (char)(value%10 + '0');
}
static void Unsigned2String(unsigned value, std::string & str)
{
str.clear();
AppendUnsigned2String(value,str);
}
static void Change(unsigned value,
OptionMap & original,
OptionMap & changed,
const char * option)
{
if (String2Unsigned(original[option]) != value)
Unsigned2String(value, changed[option]);
}
static void ClampMax(unsigned maximum,
OptionMap & original,
OptionMap & changed,
const char * option)
{
unsigned value = String2Unsigned(original[option]);
if (value > maximum)
Unsigned2String(maximum, changed[option]);
}
static void ClampMin(unsigned minimum,
OptionMap & original,
OptionMap & changed,
const char * option)
{
unsigned value = String2Unsigned(original[option]);
if (value < minimum)
Unsigned2String(minimum, changed[option]);
}
virtual void AdjustForVersion(unsigned version, const PluginCodec_Definition * /*definition*/)
{
if (version < PLUGIN_CODEC_VERSION_INTERSECT) {
for (PluginCodec_Option ** options = (PluginCodec_Option **)m_options; *options != NULL; ++options) {
if (strcmp((*options)->m_name, PLUGINCODEC_MEDIA_PACKETIZATIONS) == 0) {
*options = NULL;
break;
}
}
}
}
static void AdjustAllForVersion(unsigned version, const PluginCodec_Definition * definitions, size_t size)
{
while (size-- > 0) {
PluginCodec_MediaFormat * info = (PluginCodec_MediaFormat *)definitions->userData;
if (info != NULL)
info->AdjustForVersion(version, definitions);
++definitions;
}
}
};
/////////////////////////////////////////////////////////////////////////////
template<typename NAME>
class PluginCodec
{
protected:
PluginCodec(const PluginCodec_Definition * defn)
: m_definition(defn)
, m_optionsSame(false)
, m_maxBitRate(defn->bitsPerSec)
, m_frameTime((defn->sampleRate/1000*defn->usPerFrame)/1000) // Odd way of calculation to avoid 32 bit integer overflow
{
PTRACE(3, "Plugin", "Codec created: \"" << defn->descr
<< "\", \"" << defn->sourceFormat << "\" -> \"" << defn->destFormat << '"');
}
public:
virtual ~PluginCodec()
{
}
/// Complete construction of the plug in codec.
virtual bool Construct()
{
return true;
}
/** Terminate operation of plug in codec.
This is generally not needed but sometimes (e.g. fax) there is some
clean up required to be done on completion of the codec run.
*/
static bool Terminate()
{
return true;
}
/// Convert from one media format to another.
virtual bool Transcode(const void * fromPtr,
unsigned & fromLen,
void * toPtr,
unsigned & toLen,
unsigned & flags) = 0;
/// Gather any statistics as a string into the provide buffer.
virtual bool GetStatistics(char * /*bufferPtr*/, unsigned /*bufferSize*/)
{
return true;
}
/// Get the required output buffer size to be passed into Transcode.
virtual size_t GetOutputDataSize()
{
return 576-20-16; // Max safe MTU size (576 bytes as per RFC879) minus IP & UDP headers
}
/** Set the instance ID for the codec.
This is used to match up the encode and decoder pairs of instances for
a given call. While most codecs like G.723.1 are purely unidirectional,
some a bidirectional and have information flow between encoder and
decoder.
*/
virtual bool SetInstanceID(const char * /*idPtr*/, unsigned /*idLen*/)
{
return true;
}
/// Set all the options for the codec.
virtual bool SetOptions(const char * const * options)
{
m_optionsSame = true;
// get the media format options after adjustment from protocol negotiation
for (const char * const * option = options; *option != NULL; option += 2) {
if (!SetOption(option[0], option[1])) {
PTRACE(1, "Plugin", "Could not set option \"" << option[0] << "\" to \"" << option[1] << '"');
return false;
}
}
if (m_optionsSame)
return true;
return OnChangedOptions();
}
/// Callback for if any options are changed.
virtual bool OnChangedOptions()
{
return true;
}
/// Set an individual option of teh given name.
virtual bool SetOption(const char * optionName, const char * optionValue)
{
if (strcasecmp(optionName, PLUGINCODEC_OPTION_TARGET_BIT_RATE) == 0)
return SetOptionUnsigned(m_maxBitRate, optionValue, 1, m_definition->bitsPerSec);
if (strcasecmp(optionName, PLUGINCODEC_OPTION_FRAME_TIME) == 0)
return SetOptionUnsigned(m_frameTime, optionValue, m_definition->sampleRate/1000, m_definition->sampleRate); // 1ms to 1 second
return true;
}
template <typename T>
bool SetOptionUnsigned(T & oldValue, const char * optionValue, unsigned minimum, unsigned maximum = UINT_MAX)
{
unsigned newValue = oldValue;
if (!SetOptionUnsigned(newValue, optionValue, minimum, maximum))
return false;
oldValue = (T)newValue;
return true;
}
bool SetOptionUnsigned(unsigned & oldValue, const char * optionValue, unsigned minimum, unsigned maximum = UINT_MAX)
{
char * end;
unsigned newValue = strtoul(optionValue, &end, 10);
if (*end != '\0')
return false;
if (newValue < minimum)
newValue = minimum;
else if (newValue > maximum)
newValue = maximum;
if (oldValue != newValue) {
oldValue = newValue;
m_optionsSame = false;
}
return true;
}
template <typename T>
bool SetOptionBoolean(T & oldValue, const char * optionValue)
{
bool opt = oldValue != 0;
if (!SetOptionBoolean(opt, optionValue))
return false;
oldValue = (T)opt;
return true;
}
bool SetOptionBoolean(bool & oldValue, const char * optionValue)
{
bool newValue;
if ( strcasecmp(optionValue, "0") == 0 ||
strcasecmp(optionValue, "n") == 0 ||
strcasecmp(optionValue, "f") == 0 ||
strcasecmp(optionValue, "no") == 0 ||
strcasecmp(optionValue, "false") == 0)
newValue = false;
else if (strcasecmp(optionValue, "1") == 0 ||
strcasecmp(optionValue, "y") == 0 ||
strcasecmp(optionValue, "t") == 0 ||
strcasecmp(optionValue, "yes") == 0 ||
strcasecmp(optionValue, "true") == 0)
newValue = true;
else
return false;
if (oldValue != newValue) {
oldValue = newValue;
m_optionsSame = false;
}
return true;
}
bool SetOptionBit(int & oldValue, unsigned bit, const char * optionValue)
{
return SetOptionBit((unsigned &)oldValue, bit, optionValue);
}
bool SetOptionBit(unsigned & oldValue, unsigned bit, const char * optionValue)
{
bool newValue;
if (strcmp(optionValue, "0") == 0)
newValue = false;
else if (strcmp(optionValue, "1") == 0)
newValue = true;
else
return false;
if (((oldValue&bit) != 0) != newValue) {
if (newValue)
oldValue |= bit;
else
oldValue &= ~bit;
m_optionsSame = false;
}
return true;
}
template <class CodecClass> static void * Create(const PluginCodec_Definition * defn)
{
CodecClass * codec = new CodecClass(defn);
if (codec != NULL && codec->Construct())
return codec;
PTRACE(1, "Plugin", "Could not open codec, no context being returned.");
delete codec;
return NULL;
}
static void Destroy(const PluginCodec_Definition * /*defn*/, void * context)
{
delete (PluginCodec *)context;
}
static int Transcode(const PluginCodec_Definition * /*defn*/,
void * context,
const void * fromPtr,
unsigned * fromLen,
void * toPtr,
unsigned * toLen,
unsigned int * flags)
{
if (context != NULL && fromPtr != NULL && fromLen != NULL && toPtr != NULL && toLen != NULL && flags != NULL)
return ((PluginCodec *)context)->Transcode(fromPtr, *fromLen, toPtr, *toLen, *flags);
PTRACE(1, "Plugin", "Invalid parameter to Transcode.");
return false;
}
static int GetOutputDataSize(const PluginCodec_Definition *, void * context, const char *, void *, unsigned *)
{
return context != NULL ? ((PluginCodec *)context)->GetOutputDataSize() : 0;
}
static int ToNormalised(const PluginCodec_Definition * defn, void *, const char *, void * parm, unsigned * len)
{
return defn->userData != NULL ? ((PluginCodec_MediaFormat *)defn->userData)->AdjustOptions(parm, len, &PluginCodec_MediaFormat::ToNormalised) : -1;
}
static int ToCustomised(const PluginCodec_Definition * defn, void *, const char *, void * parm, unsigned * len)
{
return defn->userData != NULL ? ((PluginCodec_MediaFormat *)defn->userData)->AdjustOptions(parm, len, &PluginCodec_MediaFormat::ToCustomised) : -1;
}
static int FreeOptions(const PluginCodec_Definition *, void *, const char *, void * parm, unsigned * len)
{
if (parm == NULL || len == NULL || *len != sizeof(char ***))
return false;
char ** strings = (char **)parm;
for (char ** string = strings; *string != NULL; string++)
free(*string);
free(strings);
return true;
}
static int GetOptions(const struct PluginCodec_Definition * codec, void *, const char *, void * parm, unsigned * len)
{
if (parm == NULL || len == NULL || *len != sizeof(struct PluginCodec_Option **))
return false;
*(const void **)parm = codec->userData != NULL ? ((PluginCodec_MediaFormat *)codec->userData)->GetOptionsTable() : NULL;
*len = 0;
return true;
}
static int SetOptions(const PluginCodec_Definition *, void * context, const char *, void * parm, unsigned * len)
{
PluginCodec * codec = (PluginCodec *)context;
return len != NULL && *len == sizeof(const char **) && parm != NULL &&
codec != NULL && codec->SetOptions((const char * const *)parm);
}
static int ValidForProtocol(const PluginCodec_Definition * defn, void *, const char *, void * parm, unsigned * len)
{
return len != NULL && *len == sizeof(const char *) && parm != NULL && defn->userData != NULL &&
((PluginCodec_MediaFormat *)defn->userData)->IsValidForProtocol((const char *)parm);
}
static int SetInstanceID(const PluginCodec_Definition *, void * context, const char *, void * parm, unsigned * len)
{
PluginCodec * codec = (PluginCodec *)context;
return len != NULL && parm != NULL &&
codec != NULL && codec->SetInstanceID((const char *)parm, *len);
}
static int GetStatistics(const PluginCodec_Definition *, void * context, const char *, void * parm, unsigned * len)
{
PluginCodec * codec = (PluginCodec *)context;
return len != NULL && parm != NULL &&
codec != NULL && codec->GetStatistics((char *)parm, *len);
}
static int Terminate(const PluginCodec_Definition *, void * context, const char *, void *, unsigned *)
{
PluginCodec * codec = (PluginCodec *)context;
return codec != NULL && codec->Terminate();
}
static struct PluginCodec_ControlDefn * GetControls()
{
static PluginCodec_ControlDefn ControlsTable[] = {
{ PLUGINCODEC_CONTROL_GET_OUTPUT_DATA_SIZE, PluginCodec::GetOutputDataSize },
{ PLUGINCODEC_CONTROL_TO_NORMALISED_OPTIONS, PluginCodec::ToNormalised },
{ PLUGINCODEC_CONTROL_TO_CUSTOMISED_OPTIONS, PluginCodec::ToCustomised },
{ PLUGINCODEC_CONTROL_SET_CODEC_OPTIONS, PluginCodec::SetOptions },
{ PLUGINCODEC_CONTROL_GET_CODEC_OPTIONS, PluginCodec::GetOptions },
{ PLUGINCODEC_CONTROL_FREE_CODEC_OPTIONS, PluginCodec::FreeOptions },
{ PLUGINCODEC_CONTROL_VALID_FOR_PROTOCOL, PluginCodec::ValidForProtocol },
{ PLUGINCODEC_CONTROL_SET_INSTANCE_ID, PluginCodec::SetInstanceID },
{ PLUGINCODEC_CONTROL_GET_STATISTICS, PluginCodec::GetStatistics },
{ PLUGINCODEC_CONTROL_TERMINATE_CODEC, PluginCodec::Terminate },
PLUGINCODEC_CONTROL_LOG_FUNCTION_INC
{ NULL }
};
return ControlsTable;
}
protected:
const PluginCodec_Definition * m_definition;
bool m_optionsSame;
unsigned m_maxBitRate;
unsigned m_frameTime;
};
#endif // OPAL_CODEC_OPALPLUGIN_HPP
|