OPAL
Version 3.18.8
|
#include <mediastrm.h>
Public Member Functions | |
Construction | |
OpalNullMediaStream (OpalConnection &conn, const OpalMediaFormat &mediaFormat, unsigned sessionID, bool isSource, bool isSynchronous=false) | |
OpalNullMediaStream (OpalConnection &conn, const OpalMediaFormat &mediaFormat, unsigned sessionID, bool isSource, bool usePacingDelay, bool requiresPatchThread) | |
Overrides of OpalMediaStream class | |
virtual PBoolean | ReadData (BYTE *data, PINDEX size, PINDEX &length) |
virtual PBoolean | WriteData (const BYTE *data, PINDEX length, PINDEX &written) |
virtual PBoolean | RequiresPatchThread () const |
virtual PBoolean | IsSynchronous () const |
![]() | |
virtual PString | GetPatchThreadName () const |
virtual bool | InternalExecuteCommand (const OpalMediaCommand &command) |
void | PrintOn (ostream &strm) const |
virtual OpalMediaFormat | GetMediaFormat () const |
virtual bool | SetMediaFormat (const OpalMediaFormat &mediaFormat) |
bool | UpdateMediaFormat (const OpalMediaFormat &mediaFormat, bool mergeOnly=false) |
bool | ExecuteCommand (const OpalMediaCommand &command) const |
virtual PBoolean | Open () |
virtual bool | IsOpen () const |
virtual bool | IsEstablished () const |
virtual PBoolean | Start () |
virtual PBoolean | Close () |
virtual void | OnStartMediaPatch () |
virtual void | OnStopMediaPatch (OpalMediaPatch &patch) |
virtual bool | SetMediaPassThrough (OpalMediaStream &otherStream, bool bypass) |
virtual PBoolean | WritePackets (RTP_DataFrameList &packets) |
virtual PBoolean | ReadPacket (RTP_DataFrame &packet) |
virtual PBoolean | WritePacket (RTP_DataFrame &packet) |
virtual bool | PushPacket (RTP_DataFrame &packet) |
virtual PBoolean | SetDataSize (PINDEX dataSize, PINDEX frameTime) |
PINDEX | GetDataSize () const |
virtual PBoolean | RequiresPatchThread (OpalMediaStream *stream) const |
virtual bool | RequireMediaTransportThread (OpalMediaStream &stream) const |
virtual bool | EnableJitterBuffer (bool enab=true) |
OpalConnection & | GetConnection () const |
bool | IsSource () const |
bool | IsSink () const |
unsigned | GetSessionID () const |
void | SetSessionID (unsigned id) |
PString | GetID () const |
unsigned | GetTimestamp () const |
void | SetTimestamp (unsigned ts) |
bool | GetMarker () const |
void | SetMarker (bool m) |
bool | IsPaused () const |
bool | SetPaused (bool pause) |
virtual PBoolean | SetPatch (OpalMediaPatch *patch) |
OpalMediaPatchPtr | GetPatch () const |
void | AddFilter (const PNotifier &filter, const OpalMediaFormat &stage=OpalMediaFormat()) const |
bool | RemoveFilter (const PNotifier &filter, const OpalMediaFormat &stage=OpalMediaFormat()) const |
virtual void | GetStatistics (OpalMediaStatistics &statistics, bool fromPatch=false) const |
P_DECLARE_BITWISE_ENUM (Details, 6,(DetailMinimum, DetailEOL, DetailNAT, DetailSecured, DetailFEC, DetailAudio, DetailAddresses)) | |
virtual void | PrintDetail (ostream &strm, const char *prefix=NULL, Details details=Details::All()) const |
~OpalMediaStream () | |
![]() | |
OpalMediaStreamPacing (const OpalMediaFormat &mediaFormat) | |
void | Pace (bool generated, PINDEX bytes, bool &marker) |
Delay appropriate time for the written bytes. More... | |
bool | UpdateMediaFormat (const OpalMediaFormat &mediaFormat) |
Protected Member Functions | |
virtual void | InternalClose () |
virtual bool | InternalUpdateMediaFormat (const OpalMediaFormat &newMediaFormat) |
virtual bool | InternalSetPaused (bool pause, bool fromUser, bool fromPatch) |
![]() | |
OpalMediaPatchPtr | InternalSetPatchPart1 (OpalMediaPatch *newPatch) |
void | InternalSetPatchPart2 (const OpalMediaPatchPtr &oldPatch) |
virtual bool | InternalSetJitterBuffer (const OpalJitterBuffer::Init &init) |
OpalMediaStream (OpalConnection &conn, const OpalMediaFormat &mediaFormat, unsigned sessionID, bool isSource) | |
![]() | |
PTRACE_THROTTLE (m_throttleLog, 4, 5000) | |
Protected Attributes | |
bool | m_isSynchronous |
bool | m_requiresPatchThread |
![]() | |
OpalConnection & | m_connection |
unsigned | m_sessionID |
WORD | m_sequenceNumber |
RTP_SyncSourceId | m_syncSourceId |
PString | m_identifier |
OpalMediaFormat | m_mediaFormat |
atomic< bool > | m_paused |
bool | m_isSource |
atomic< bool > | m_isOpen |
PINDEX | m_defaultDataSize |
unsigned | m_timestamp |
bool | m_marker |
OpalMediaPatchPtr | m_mediaPatch |
RTP_DataFrame::PayloadTypes | m_payloadType |
unsigned | m_frameTime |
PINDEX | m_frameSize |
![]() | |
bool | m_timeOnMarkers |
unsigned | m_frameTime |
PINDEX | m_frameSize |
unsigned | m_timeUnits |
PAdaptiveDelay | m_delay |
unsigned | m_previousDelay |
Additional Inherited Members | |
![]() | |
typedef OpalMediaPatchPtr | PatchPtr |
This class describes a media stream that is used for media bypass.
OpalNullMediaStream::OpalNullMediaStream | ( | OpalConnection & | conn, |
const OpalMediaFormat & | mediaFormat, | ||
unsigned | sessionID, | ||
bool | isSource, | ||
bool | isSynchronous = false |
||
) |
Construct a new media stream for RTP sessions.
conn | Connection that owns the stream |
mediaFormat | Media format for stream |
sessionID | Session number for stream |
isSource | Is a source stream |
isSynchronous | Can accept data and block accordingly |
OpalNullMediaStream::OpalNullMediaStream | ( | OpalConnection & | conn, |
const OpalMediaFormat & | mediaFormat, | ||
unsigned | sessionID, | ||
bool | isSource, | ||
bool | usePacingDelay, | ||
bool | requiresPatchThread | ||
) |
conn | Connection that owns the stream |
mediaFormat | Media format for stream |
sessionID | Session number for stream |
isSource | Is a source stream |
usePacingDelay | Use delay to pace stream I/O |
requiresPatchThread | Requires a patch thread to execute |
|
inlineprotectedvirtual |
Close any internal components of the stream. This should be used in preference to overriding the Close() function as it is guaranteed to be called exactly once and avoids race conditions in the shut down sequence of a media stream.
Implements OpalMediaStream.
|
protectedvirtual |
Reimplemented from OpalMediaStream.
|
protectedvirtual |
Reimplemented from OpalMediaStream.
|
virtual |
Indicate if the media stream is synchronous. Returns m_isSynchronous.
Implements OpalMediaStream.
|
virtual |
Read raw media data from the source media stream. The default behaviour does nothing and returns false.
data | Data buffer to read to |
size | Size of buffer |
length | Length of data actually read |
Reimplemented from OpalMediaStream.
|
virtual |
Indicate if the media stream requires a OpalMediaPatch thread (active patch). The default behaviour returns the value of m_isSynchronous.
Reimplemented from OpalMediaStream.
|
virtual |
Write raw media data to the sink media stream. The default behaviour does nothing and returns false.
data | Data to write |
length | Length of data to read. |
written | Length of data actually written |
Reimplemented from OpalMediaStream.
|
protected |
|
protected |