/usr/include/opal/opal/transcoders.h is in libopal-dev 3.10.10~dfsg2-2.1build2.
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 | /*
* transcoders.h
*
* Abstractions for converting media from one format to another.
*
* Open Phone Abstraction Library (OPAL)
* Formally known as the Open H323 project.
*
* Copyright (c) 2001 Equivalence Pty. Ltd.
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Open Phone Abstraction Library.
*
* The Initial Developer of the Original Code is Equivalence Pty. Ltd.
*
* Contributor(s): ______________________________________.
*
* $Revision: 26728 $
* $Author: rjongbloed $
* $Date: 2011-12-01 22:59:14 -0600 (Thu, 01 Dec 2011) $
*/
#ifndef OPAL_OPAL_TRANSCODERS_H
#define OPAL_OPAL_TRANSCODERS_H
#ifdef P_USE_PRAGMA
#pragma interface
#endif
#include <opal/buildopts.h>
#include <opal/mediafmt.h>
#include <opal/mediacmd.h>
#include <rtp/rtp.h>
class RTP_DataFrame;
class OpalTranscoder;
///////////////////////////////////////////////////////////////////////////////
/** This class described an OpalTranscoder in terms of a pair of
OpalMediaFormat instances, for input and output.
*/
class OpalMediaFormatPair : public PObject
{
PCLASSINFO(OpalMediaFormatPair, PObject);
public:
/**@name Construction */
//@{
/** Create a new transcoder implementation.
*/
OpalMediaFormatPair(
const OpalMediaFormat & inputMediaFormat, ///< Input media format
const OpalMediaFormat & outputMediaFormat ///< Output media format
);
//@}
/**@name Overrides from PObject */
//@{
/**Standard stream print function.
The PObject class has a << operator defined that calls this function
polymorphically.
*/
void PrintOn(
ostream & strm ///< Stream to output text representation
) const;
/** Compare the two objects and return their relative rank. This function is
usually overridden by descendent classes to yield the ranking according
to the semantics of the object.
The default function is to use the <code>CompareObjectMemoryDirect()</code>
function to do a byte wise memory comparison of the two objects.
@return
<code>LessThan</code>, <code>EqualTo</code> or <code>GreaterThan</code>
according to the relative rank of the objects.
*/
virtual Comparison Compare(
const PObject & obj ///< Object to compare against.
) const;
//@}
/**@name Operations */
//@{
/**Get the names of the input or output formats.
*/
const OpalMediaFormat & GetInputFormat() const { return inputMediaFormat; }
/**Get the names of the input or output formats.
*/
const OpalMediaFormat & GetOutputFormat() const { return outputMediaFormat; }
//@}
protected:
OpalMediaFormat inputMediaFormat;
OpalMediaFormat outputMediaFormat;
};
typedef std::pair<PString, PString> OpalTranscoderKey;
typedef PFactory<OpalTranscoder, OpalTranscoderKey> OpalTranscoderFactory;
typedef PFactory<OpalTranscoder, OpalTranscoderKey>::KeyList_T OpalTranscoderList;
typedef PFactory<OpalTranscoder, OpalTranscoderKey>::KeyList_T::iterator OpalTranscoderIterator;
__inline OpalTranscoderKey MakeOpalTranscoderKey(const OpalMediaFormat & from, const OpalMediaFormat & to)
{
return OpalTranscoderKey(from.GetName(), to.GetName());
}
__inline OpalTranscoderKey MakeOpalTranscoderKey(const char * from, const char * to)
{
return OpalTranscoderKey(from, to);
}
#define OPAL_REGISTER_TRANSCODER(cls, input, output) \
PFACTORY_CREATE(OpalTranscoderFactory, cls, MakeOpalTranscoderKey(input, output), false)
/**This class embodies the implementation of a specific transcoder instance
used to convert data from one format to another.
An application may create a descendent off this class and override
functions as required for implementing a transcoder.
*/
class OpalTranscoder : public OpalMediaFormatPair
{
PCLASSINFO(OpalTranscoder, OpalMediaFormatPair);
public:
/**@name Construction */
//@{
/** Create a new transcoder implementation.
*/
OpalTranscoder(
const OpalMediaFormat & inputMediaFormat, ///< Input media format
const OpalMediaFormat & outputMediaFormat ///< Output media format
);
//@}
/**@name Operations */
//@{
/**Update the input and output media formats. This can be used to adjust
the parameters of a codec at run time. Note you cannot change the basic
media format, eg change GSM0610 to G.711, only options for that
format, eg 6k3 mode to 5k3 mode in G.723.1. If the formats are
different then a OpalMediaFormat::Merge() is performed.
If a format is empty (invalid) it is ignored and does not update the
internal variable. In this way only the input or output side can be
updated.
The default behaviour updates the inputMediaFormat and outputMediaFormat
member variables.
*/
virtual bool UpdateMediaFormats(
const OpalMediaFormat & inputMediaFormat, ///< Input media format
const OpalMediaFormat & outputMediaFormat ///< Output media format
);
/**Execute the command specified to the transcoder. The commands are
highly context sensitive, for example OpalVideoUpdatePicture would only
apply to a video transcoder.
The default behaviour simply returns false.
@returns true if command is handled.
*/
virtual PBoolean ExecuteCommand(
const OpalMediaCommand & command ///< Command to execute.
);
/**Get the optimal size for data frames to be converted.
This function returns the size of frames that will be most efficient
in conversion. A RTP_DataFrame will attempt to provide or use data in
multiples of this size. Note that it may not do so, so the transcoder
must be able to handle any sized packets.
*/
virtual PINDEX GetOptimalDataFrameSize(
PBoolean input ///< Flag for input or output data size
) const = 0;
/**Convert the data from one format to another.
This function takes the input data as a RTP_DataFrame and converts it
to its output format, placing it (possibly) into multiple RTP_DataFrame
objects.
The default behaviour makes sure the output list has only one element
in it and calls the Convert() function.
Returns false if the conversion fails.
*/
virtual PBoolean ConvertFrames(
const RTP_DataFrame & input, ///< Input data
RTP_DataFrameList & output ///< Output data
);
/**Convert the data from one format to another.
This function takes the input data as a RTP_DataFrame and converts it
to its output format, placing it into the RTP_DataFrame provided.
Returns false if the conversion fails.
*/
virtual PBoolean Convert(
const RTP_DataFrame & input, ///< Input data
RTP_DataFrame & output ///< Output data
) = 0;
/**Create an instance of a media conversion function.
Returns NULL if there is no registered media transcoder between the two
named formats.
*/
static OpalTranscoder * Create(
const OpalMediaFormat & srcFormat, ///< Name of source format
const OpalMediaFormat & dstFormat, ///< Name of destination format
const BYTE * instance = NULL, ///< Unique instance identifier for transcoder
unsigned instanceLen = 0 ///< Length of instance identifier
);
/**Find media format(s) for transcoders.
This function attempts to find and intermediate media format that will
allow two transcoders to be used to get data from the source format to
the destination format.
There could be many possible matches between the two lists, so
preference is given to the order of the destination formats.
At least one of the two selected medai formats (source or destination)
must also be of the specified media type ("audio", "video" etc).
Returns false if there is no registered media transcoder that can be
used to get from src to dst for the media type.
*/
static bool SelectFormats(
const OpalMediaType & mediaType, ///< Media type for selection.
const OpalMediaFormatList & srcFormats, ///< Names of possible source formats
const OpalMediaFormatList & dstFormats, ///< Names of possible destination formats
const OpalMediaFormatList & allFormats, ///< Master list of formats for merging options
OpalMediaFormat & srcFormat, ///< Selected source format to be used
OpalMediaFormat & dstFormat ///< Selected destination format to be used
);
/**Find media intermediate format for transcoders.
This function attempts to find the intermediate media format that will
allow two transcoders to be used to get data from the source format to
the destination format.
If there is a transcoder that can go directly from the source format to
the destination format then the function returns true but the
intermediateFormat parmaeter will be an invlid format.
Returns false if there is no registered media transcoder that can be used
between the two named formats.
*/
static bool FindIntermediateFormat(
const OpalMediaFormat & srcFormat, ///< Selected destination format to be used
const OpalMediaFormat & dstFormat, ///< Selected destination format to be used
OpalMediaFormat & intermediateFormat ///< Intermediate format that can be used
);
/**Get a list of possible destination media formats for the destination.
*/
static OpalMediaFormatList GetDestinationFormats(
const OpalMediaFormat & srcFormat ///< Selected source format
);
/**Get a list of possible source media formats for the destination.
*/
static OpalMediaFormatList GetSourceFormats(
const OpalMediaFormat & dstFormat ///< Selected destination format
);
/**Get a list of possible media formats that can do bi-directional media.
*/
static OpalMediaFormatList GetPossibleFormats(
const OpalMediaFormatList & formats ///< Destination format list
);
//@}
/**@name Operations */
//@{
/**Get maximum output size.
*/
PINDEX GetMaxOutputSize() const { return maxOutputSize; }
/**Set the maximum output size.
*/
void SetMaxOutputSize(
PINDEX size
) { maxOutputSize = size; }
/**Set a notifier to receive commands generated by the transcoder. The
commands are highly context sensitive, for example OpalVideoUpdatePicture
would only apply to a video transcoder.
*/
void SetCommandNotifier(
const PNotifier & notifier ///< Command to execute.
) { commandNotifier = notifier; }
/**Get the notifier to receive commands generated by the transcoder. The
commands are highly context sensitive, for example OpalVideoUpdatePicture
would only apply to a video transcoder.
*/
const PNotifier & GetCommandNotifier() const { return commandNotifier; }
/// Notify command notifier of command
void NotifyCommand(
const OpalMediaCommand & command
) const;
/// Get session ID for the transcoder (from OpalMediaStream)
unsigned GetSessionID() const { return m_sessionID; }
/// Set session ID for the transcoder (from OpalMediaStream)
void SetSessionID(unsigned id) { m_sessionID = id; }
/** Set the unique instance identifier for transcoder
*/
virtual void SetInstanceID(
const BYTE * instance, ///< Unique instance identifier for transcoder
unsigned instanceLen ///< Length of instance identifier
);
RTP_DataFrame::PayloadTypes GetPayloadType(
PBoolean input ///< Flag for input or output data size
) const;
virtual bool AcceptComfortNoise() const { return false; }
virtual bool AcceptEmptyPayload() const { return acceptEmptyPayload; }
virtual bool AcceptOtherPayloads() const { return acceptOtherPayloads; }
#if OPAL_STATISTICS
virtual void GetStatistics(OpalMediaStatistics & statistics) const;
#endif
void CopyTimestamp(RTP_DataFrame & dst, const RTP_DataFrame & src, bool inToOut) const;
//@}
protected:
PINDEX maxOutputSize;
PNotifier commandNotifier;
PMutex updateMutex;
unsigned m_sessionID;
bool outputIsRTP, inputIsRTP;
bool acceptEmptyPayload;
bool acceptOtherPayloads;
unsigned m_inClockRate;
unsigned m_outClockRate;
};
/**This class defines a transcoder implementation class that will
encode/decode fixed sized blocks. That is each input block of n bytes
is encoded to exactly m bytes of data, eg GSM etc.
An application may create a descendent off this class and override
functions as required for descibing a specific transcoder.
*/
class OpalFramedTranscoder : public OpalTranscoder
{
PCLASSINFO(OpalFramedTranscoder, OpalTranscoder);
public:
/**@name Construction */
//@{
/** Create a new framed transcoder implementation.
*/
OpalFramedTranscoder(
const OpalMediaFormat & inputMediaFormat, ///< Input media format
const OpalMediaFormat & outputMediaFormat ///< Output media format
);
//@}
/**@name Operations */
//@{
/**Update the input and output media formats. This can be used to adjust
the parameters of a codec at run time. Note you cannot change the basic
media format, eg change GSM0610 to G.711, only options for that
format, eg 6k3 mode to 5k3 mode in G.723.1. If the formats are
different then a OpalMediaFormat::Merge() is performed.
If a format is empty (invalid) it is ignored and does not update the
internal variable. In this way only the input or output side can be
updated.
The default behaviour updates the inputMediaFormat and outputMediaFormat
member variables.
*/
virtual bool UpdateMediaFormats(
const OpalMediaFormat & inputMediaFormat, ///< Input media format
const OpalMediaFormat & outputMediaFormat ///< Output media format
);
/**Get the optimal size for data frames to be converted.
This function returns the size of frames that will be most efficient
in conversion. A RTP_DataFrame will attempt to provide or use data in
multiples of this size. Note that it may not do so, so the transcoder
must be able to handle any sized packets.
*/
virtual PINDEX GetOptimalDataFrameSize(
PBoolean input ///< Flag for input or output data size
) const;
/**Convert the data from one format to another.
This function takes the input data as a RTP_DataFrame and converts it
to its output format, placing it into the RTP_DataFrame provided.
Returns FALSE if the conversion fails.
*/
virtual PBoolean Convert(
const RTP_DataFrame & input, ///< Input data
RTP_DataFrame & output ///< Output data
);
/**Convert a frame of data from one format to another.
This function implicitly knows the input and output frame sizes.
*/
virtual PBoolean ConvertFrame(
const BYTE * input, ///< Input data
BYTE * output ///< Output data
);
virtual PBoolean ConvertFrame(
const BYTE * input, ///< Input data
PINDEX & consumed, ///< number of input bytes consumed
BYTE * output, ///< Output data
PINDEX & created ///< number of output bytes created
);
virtual PBoolean ConvertSilentFrame(
BYTE * output ///< Output data
);
//@}
protected:
void CalculateSizes();
PINDEX inputBytesPerFrame;
PINDEX outputBytesPerFrame;
PINDEX maxOutputDataSize;
};
/**This class defines a transcoder implementation class where the encode/decode
is streamed. That is each input n bit PCM sample is encoded to m bits of
encoded data, eg G.711 etc.
An application may create a descendent off this class and override
functions as required for descibing a specific transcoder.
*/
class OpalStreamedTranscoder : public OpalTranscoder
{
PCLASSINFO(OpalStreamedTranscoder, OpalTranscoder);
public:
/**@name Construction */
//@{
/** Create a new streamed transcoder implementation.
*/
OpalStreamedTranscoder(
const OpalMediaFormat & inputMediaFormat, ///< Input media format
const OpalMediaFormat & outputMediaFormat, ///< Output media format
unsigned inputBits, ///< Bits per sample in input data
unsigned outputBits ///< Bits per sample in output data
);
//@}
/**@name Operations */
//@{
/**Get the optimal size for data frames to be converted.
This function returns the size of frames that will be most efficient
in conversion. A RTP_DataFrame will attempt to provide or use data in
multiples of this size. Note that it may not do so, so the transcoder
must be able to handle any sized packets.
*/
virtual PINDEX GetOptimalDataFrameSize(
PBoolean input ///< Flag for input or output data size
) const;
/**Convert the data from one format to another.
This function takes the input data as a RTP_DataFrame and converts it
to its output format, placing it into the RTP_DataFrame provided.
Returns false if the conversion fails.
*/
virtual PBoolean Convert(
const RTP_DataFrame & input, ///< Input data
RTP_DataFrame & output ///< Output data
);
/**Convert one sample from one format to another.
This function takes the input data as a single sample value and
converts it to its output format.
Returns converted value.
*/
virtual int ConvertOne(int sample) const = 0;
//@}
protected:
unsigned inputBitsPerSample;
unsigned outputBitsPerSample;
};
///////////////////////////////////////////////////////////////////////////////
class Opal_Linear16Mono_PCM : public OpalStreamedTranscoder {
public:
Opal_Linear16Mono_PCM();
virtual int ConvertOne(int sample) const;
};
///////////////////////////////////////////////////////////////////////////////
class Opal_PCM_Linear16Mono : public OpalStreamedTranscoder {
public:
Opal_PCM_Linear16Mono();
virtual int ConvertOne(int sample) const;
};
///////////////////////////////////////////////////////////////////////////////
#define OPAL_REGISTER_L16_MONO() \
OPAL_REGISTER_TRANSCODER(Opal_Linear16Mono_PCM, OpalL16_MONO_8KHZ, OpalPCM16); \
OPAL_REGISTER_TRANSCODER(Opal_PCM_Linear16Mono, OpalPCM16, OpalL16_MONO_8KHZ)
class OpalEmptyFramedAudioTranscoder : public OpalFramedTranscoder
{
PCLASSINFO(OpalEmptyFramedAudioTranscoder, OpalFramedTranscoder);
public:
OpalEmptyFramedAudioTranscoder(const char * inFormat, const char * outFormat)
: OpalFramedTranscoder(inFormat, outFormat)
{ }
PBoolean ConvertFrame(const BYTE *, PINDEX &, BYTE *, PINDEX &)
{ return false; }
};
#define OPAL_DECLARE_EMPTY_TRANSCODER(fmt) \
class Opal_Empty_##fmt##_Encoder : public OpalEmptyFramedAudioTranscoder \
{ \
public: \
Opal_Empty_##fmt##_Encoder() \
: OpalEmptyFramedAudioTranscoder(OpalPCM16, fmt) \
{ } \
}; \
class Opal_Empty_##fmt##_Decoder : public OpalEmptyFramedAudioTranscoder \
{ \
public: \
Opal_Empty_##fmt##_Decoder() \
: OpalEmptyFramedAudioTranscoder(fmt, OpalPCM16) \
{ } \
}; \
#define OPAL_DEFINE_EMPTY_TRANSCODER(fmt) \
OPAL_REGISTER_TRANSCODER(Opal_Empty_##fmt##_Encoder, OpalPCM16, fmt); \
OPAL_REGISTER_TRANSCODER(Opal_Empty_##fmt##_Decoder, fmt, OpalPCM16); \
#endif // OPAL_OPAL_TRANSCODERS_H
// End of File ///////////////////////////////////////////////////////////////
|