All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.straylightlabs.tivolibre.StreamDecoder Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2015 Todd Kulesza .
 *
 * This file is part of TivoLibre. TivoLibre is derived from
 * TivoDecode 0.4.4 by Jeremy Drake. See the LICENSE-TivoDecode
 * file for the licensing terms for TivoDecode.
 *
 * TivoLibre is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * TivoLibre is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with TivoLibre.  If not, see .
 *
 */

package net.straylightlabs.tivolibre;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.IOException;
import java.io.OutputStream;
import java.util.HashMap;
import java.util.Map;

abstract class StreamDecoder {
    protected final TuringDecoder turingDecoder;
    protected final int mpegOffset;
    protected final CountingDataInputStream inputStream;
    protected final OutputStream outputStream;
    protected final Map streams;

    protected long packetCounter;
    protected PatData patData;

    private final static Logger logger = LoggerFactory.getLogger(StreamDecoder.class);

    protected StreamDecoder(TuringDecoder decoder, int mpegOffset, CountingDataInputStream inputStream,
                            OutputStream outputStream) {
        this.turingDecoder = decoder;
        this.mpegOffset = mpegOffset;
        this.inputStream = inputStream;
        this.outputStream = outputStream;

        packetCounter = 0;
        patData = new PatData();
        streams = new HashMap<>();
        initPatStream();
    }

    private void initPatStream() {
        TransportStream stream = new TransportStream(turingDecoder);
        streams.put(0, stream);
    }

    protected void advanceToMpegOffset() throws IOException {
        int bytesToSkip = (int) (mpegOffset - inputStream.getPosition());
        if (bytesToSkip < 0) {
            logger.error("Error: Stream advanced past MPEG data (MPEG at {}, current position = {})",
                    mpegOffset, inputStream.getPosition()
            );
        }
        inputStream.skipBytes(bytesToSkip);
    }

    abstract boolean process();

    protected boolean processPatPacket(TransportStreamPacket packet) {
        if (packet.isPayloadStart()) {
            // Advance past pointer field
            packet.advanceDataOffset(1);
        }

        int tableId = packet.readUnsignedByteFromData();
        if (tableId != 0) {
            logger.error(String.format("PAT Table ID must be 0x00 (found 0x%02x)", tableId));
            return false;
        }

        int patField = packet.readUnsignedShortFromData();
        int sectionLength = patField & 0x0fff;

        if ((patField & 0xC000) != 0x8000) {
            logger.error(String.format("Failed to validate PAT Misc field: 0x%04x", patField));
            return false;
        }
        if ((patField & 0x0C00) != 0x0000) {
            logger.error("Failed to validate PAT MBZ of section length");
            return false;
        }

        // Stream ID
        packet.readUnsignedShortFromData();
        sectionLength -= 2;

        patData.setVersionNumber(packet.readUnsignedByteFromData() & 0x3E);
        sectionLength--;
        patData.setSectionNumber(packet.readUnsignedByteFromData());
        sectionLength--;
        patData.setLastSectionNumber(packet.readUnsignedByteFromData());
        sectionLength--;

        sectionLength -= 4; // Ignore the CRC

        while (sectionLength > 0) {
            // Program number
            packet.readUnsignedShortFromData();
            sectionLength -= 2;

            patField = packet.readUnsignedShortFromData();
            sectionLength -= 2;
            patData.setProgramMapPid(patField & 0x1fff);

            // Create a stream for this PID unless one already exists
            if (!streams.containsKey(patData.getProgramMapPid())) {
                if (logger.isInfoEnabled()) {
                    logger.info(String.format("Creating a new stream for PMT PID 0x%04x", patData.getProgramMapPid()));
                }
                TransportStream stream = new TransportStream(turingDecoder);
                streams.put(patData.getProgramMapPid(), stream);
            }
        }
        if (sectionLength < 0) {
            logger.error("Problem parsing PAT: advanced too far in the data stream");
            return false;
        }

        return true;
    }

    protected static class PatData {
        private int versionNumber;
        private int currentNextIndicator;
        private int sectionNumber;
        private int lastSectionNumber;
        private int programMapPid;

        @SuppressWarnings("unused")
        public int getVersionNumber() {
            return versionNumber;
        }

        public void setVersionNumber(int versionNumber) {
            this.versionNumber = versionNumber;
        }

        @SuppressWarnings("unused")
        public int getCurrentNextIndicator() {
            return currentNextIndicator;
        }

        @SuppressWarnings("unused")
        public void setCurrentNextIndicator(int currentNextIndicator) {
            this.currentNextIndicator = currentNextIndicator;
        }

        @SuppressWarnings("unused")
        public int getSectionNumber() {
            return sectionNumber;
        }

        public void setSectionNumber(int sectionNumber) {
            this.sectionNumber = sectionNumber;
        }

        @SuppressWarnings("unused")
        public int getLastSectionNumber() {
            return lastSectionNumber;
        }

        public void setLastSectionNumber(int lastSectionNumber) {
            this.lastSectionNumber = lastSectionNumber;
        }

        public int getProgramMapPid() {
            return programMapPid;
        }

        public void setProgramMapPid(int programMapPid) {
            this.programMapPid = programMapPid;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy