TSDuck v3.40-3965
MPEG Transport Stream Toolkit
|
Abstract base class for all sorts of demux from TS packets. More...
#include <tsAbstractDemux.h>
Public Member Functions | |
virtual | ~AbstractDemux () |
Destructor. | |
virtual void | addPID (PID pid) |
Add one PID to filter. | |
virtual void | addPIDs (const PIDSet &pids) |
Add several PID's to filter. | |
int | demuxId () const |
Get the "demux id" value, as previously stored by the application. | |
virtual void | feedPacket (const TSPacket &pkt) |
The following method feeds the demux with a TS packet. | |
virtual bool | hasPID (PID pid) const |
Check if a PID is filtered. | |
virtual size_t | pidCount () const |
Get the current number of PID's being filtered. | |
virtual void | removePID (PID pid) |
Remove one PID to filter. | |
virtual void | reset () |
Reset the demux. | |
virtual void | resetPID (PID pid) |
Reset the demuxing context for one single PID. | |
void | setDemuxId (int id) |
Set some arbitrary "demux id" value. | |
virtual void | setPIDFilter (const PIDSet &pid_filter) |
Replace the list of PID's to filter. | |
Protected Member Functions | |
AbstractDemux (DuckContext &duck, const PIDSet &pid_filter=NoPID) | |
Constructor for subclasses. | |
bool | afterCallingHandler (bool executeDelayedOperations=true) |
Helper for subclass, after invoking an application-defined handler. | |
void | beforeCallingHandler (PID pid=PID_NULL) |
Helper for subclass, before invoking an application-defined handler. | |
virtual void | immediateReset () |
Reset the demux immediately. | |
virtual void | immediateResetPID (PID pid) |
Reset the demuxing context for one single PID immediately. | |
Protected Attributes | |
DuckContext & | _duck |
The TSDuck execution context is accessible to all subclasses. | |
PacketCounter | _packet_count = 0 |
Number of TS packets in the demultiplexed stream. | |
PIDSet | _pid_filter {} |
Current set of filtered PID's. | |
Abstract base class for all sorts of demux from TS packets.
The application sets a number of PID's to filter. What is extracted from those PID's and how they are reported to the application depend on the concrete demux class.
|
explicitprotected |
Constructor for subclasses.
[in,out] | duck | TSDuck execution context. The reference is kept inside the demux. |
[in] | pid_filter | The initial set of PID's to demux. |
|
virtual |
The following method feeds the demux with a TS packet.
[in] | pkt | A TS packet. |
Reimplemented in ts::SectionDemux, ts::TimeTrackerDemux, ts::MPEDemux, ts::PESDemux, and ts::T2MIDemux.
|
virtual |
Replace the list of PID's to filter.
The method resetPID() is invoked on each removed PID.
[in] | pid_filter | The list of PID's to filter. |
|
virtual |
|
virtual |
Add several PID's to filter.
[in] | pids | The list of new PID's to filter. |
Reimplemented in ts::MPEDemux.
|
virtual |
Remove one PID to filter.
The method resetPID() is invoked on pid.
[in] | pid | The PID to no longer filter. |
Reimplemented in ts::MPEDemux.
|
virtual |
Get the current number of PID's being filtered.
|
virtual |
Check if a PID is filtered.
[in] | pid | The PID to test. |
|
virtual |
Reset the demux.
Useful when the transport stream changes. The PID filter and the handlers are not modified.
If invoked in an application-handler, the operation is delayed until the handler terminates. For subclass implementers, see beforeCallingHandler() and override immediateReset() instead of reset().
Reimplemented in ts::StandaloneTableDemux.
|
virtual |
Reset the demuxing context for one single PID.
Forget all previous partially demuxed data on this PID.
If invoked in an application-handler, the operation is delayed until the handler terminates. For subclass implementers, see beforeCallingHandler() and override immediateResetPID() instead of resetPID().
[in] | pid | The PID to reset. |
Reimplemented in ts::StandaloneTableDemux.
|
inline |
Set some arbitrary "demux id" value.
This value is chosen and set by the application. It can be retrieved later if a table or section handler is used by several demux. The demux id is not interpreted by the demux, it is only stored for the application. The initial value of a demux id is zero.
[in] | id | Application-defined demux id to assign. |
|
inline |
Get the "demux id" value, as previously stored by the application.
Helper for subclass, before invoking an application-defined handler.
The idea is to protect the integrity of the demux during the execution of an application-defined handler. The handler is invoked in the middle of an operation but the handler may call reset() or resetPID(). Executing the reset in the middle of an operation may be problematic. By using beforeCallingHandler() and afterCallingHandler(), all reset operations in between are delayed after the execution of the handler.
Example:
[in] | pid | The PID for which the handler will be called. All reset operations on this PID will be delayed until afterCallingHandler(). |
|
protected |
Helper for subclass, after invoking an application-defined handler.
[in] | executeDelayedOperations | When true (the default), execute all pending reset operations. |
|
protectedvirtual |
Reset the demux immediately.
Reimplemented in ts::SectionDemux, ts::TimeTrackerDemux, ts::MPEDemux, ts::PESDemux, ts::T2MIDemux, and ts::TeletextDemux.
|
protectedvirtual |
Reset the demuxing context for one single PID immediately.
[in] | pid | The PID to reset. |
Reimplemented in ts::SectionDemux, ts::TimeTrackerDemux, ts::PESDemux, ts::T2MIDemux, and ts::TeletextDemux.