Interface MpegTsDecoder

All Known Implementing Classes:
MpegTsDecoderImpl

public interface MpegTsDecoder
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    read(org.taktik.mpegts.MTSPacket mtsPacket, Consumer<PESPacket> callback)
    Submit an MTSPacket for decoding.
  • Method Details

    • read

      void read(org.taktik.mpegts.MTSPacket mtsPacket, Consumer<PESPacket> callback) throws IOException
      Submit an MTSPacket for decoding. If the packet triggers the completion of a PESPacket, then callback will be called.
      Parameters:
      mtsPacket - must be non-null
      callback - must be non-null
      Throws:
      IOException