Package com.wowza.wms.transport.mpeg2
Interface IMPEG2PacketProcessor
-
- All Known Implementing Classes:
MPEG2AudioPacketProcessor
,MPEG2PESAssembler
,MPEG2PESPacketProcessor
,MPEG2RawAssembler
,MPEG2RawPacketProcessor
,MPEG2SectionAssembler
,MPEG2VideoPacketProcessor
public interface IMPEG2PacketProcessor
The Interface Impeg2PacketProcessor.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
notifyAdaptationHeaders(boolean notify)
Notify adaptation headers.void
processMpeg2Buffer(int pid, byte[] bytes, int offset, int count)
Process mpeg2 raw buffer.void
processMpeg2Packet(MPEG2MPTS.MPEG2MPTSBuffer.MPEG2Packet packet)
Process mpeg2 packet.
-
-
-
Method Detail
-
notifyAdaptationHeaders
void notifyAdaptationHeaders(boolean notify)
Notify adaptation headers.- Parameters:
notify
- the notify
-
processMpeg2Packet
void processMpeg2Packet(MPEG2MPTS.MPEG2MPTSBuffer.MPEG2Packet packet) throws java.io.IOException
Process mpeg2 packet.- Parameters:
packet
- the packet- Throws:
java.io.IOException
- Signals that an I/O exception has occurred.
-
processMpeg2Buffer
void processMpeg2Buffer(int pid, byte[] bytes, int offset, int count)
Process mpeg2 raw buffer.- Parameters:
bytes
-offset
-count
-
-
-