#include <transcoders.h>
Inheritance diagram for OpalFramedTranscoder:
Public Member Functions | |
Operations | |
virtual bool | UpdateMediaFormats (const OpalMediaFormat &inputMediaFormat, const OpalMediaFormat &outputMediaFormat) |
virtual PINDEX | GetOptimalDataFrameSize (PBoolean input) const |
virtual PBoolean | Convert (const RTP_DataFrame &input, RTP_DataFrame &output) |
virtual PBoolean | ConvertFrame (const BYTE *input, BYTE *output) |
virtual PBoolean | ConvertFrame (const BYTE *input, PINDEX &consumed, BYTE *output, PINDEX &created) |
virtual PBoolean | ConvertSilentFrame (BYTE *output) |
Protected Attributes | |
PINDEX | inputBytesPerFrame |
PINDEX | outputBytesPerFrame |
PINDEX | maxOutputDataSize |
An application may create a descendent off this class and override functions as required for descibing a specific transcoder.
OpalFramedTranscoder::OpalFramedTranscoder | ( | const OpalMediaFormat & | inputMediaFormat, | |
const OpalMediaFormat & | outputMediaFormat, | |||
PINDEX | inputBytesPerFrame, | |||
PINDEX | outputBytesPerFrame | |||
) |
Create a new framed transcoder implementation.
inputMediaFormat | Input media format |
outputMediaFormat | Output media format |
inputBytesPerFrame | Number of bytes in an input frame |
outputBytesPerFrame | Number of bytes in an output frame |
OpalFramedTranscoder::OpalFramedTranscoder | ( | const OpalMediaFormat & | inputMediaFormat, | |
const OpalMediaFormat & | outputMediaFormat, | |||
PINDEX | inputBytesPerFrame, | |||
PINDEX | outputBytesPerFrame | |||
) |
Create a new framed transcoder implementation.
inputMediaFormat | Input media format |
outputMediaFormat | Output media format |
inputBytesPerFrame | Number of bytes in an input frame |
outputBytesPerFrame | Number of bytes in an output frame |
virtual bool OpalFramedTranscoder::UpdateMediaFormats | ( | const OpalMediaFormat & | inputMediaFormat, | |
const OpalMediaFormat & | outputMediaFormat | |||
) | [virtual] |
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.
inputMediaFormat | Input media format |
outputMediaFormat | Output media format |
Reimplemented from OpalTranscoder.
Reimplemented in OpalPluginFramedAudioTranscoder.
virtual PINDEX OpalFramedTranscoder::GetOptimalDataFrameSize | ( | PBoolean | input | ) | const [virtual] |
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.
input | Flag for input or output data size |
Implements OpalTranscoder.
virtual PBoolean OpalFramedTranscoder::Convert | ( | const RTP_DataFrame & | input, | |
RTP_DataFrame & | output | |||
) | [virtual] |
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.
input | Input data |
output | Output data |
Implements OpalTranscoder.
virtual PBoolean OpalFramedTranscoder::ConvertFrame | ( | const BYTE * | input, | |
BYTE * | output | |||
) | [virtual] |
Convert a frame of data from one format to another. This function implicitly knows the input and output frame sizes.
input | Input data |
output | Output data |
virtual PBoolean OpalFramedTranscoder::ConvertFrame | ( | const BYTE * | input, | |
PINDEX & | consumed, | |||
BYTE * | output, | |||
PINDEX & | created | |||
) | [virtual] |
input | Input data |
consumed | number of input bytes consumed |
output | Output data |
created | number of output bytes created |
Reimplemented in OpalPluginFramedAudioTranscoder, and OpalEmptyFramedAudioTranscoder.
virtual PBoolean OpalFramedTranscoder::ConvertSilentFrame | ( | BYTE * | output | ) | [virtual] |
PINDEX OpalFramedTranscoder::inputBytesPerFrame [protected] |
PINDEX OpalFramedTranscoder::outputBytesPerFrame [protected] |
PINDEX OpalFramedTranscoder::maxOutputDataSize [protected] |