Comment SectionPassthrough

parent 79bc1603
...@@ -190,6 +190,15 @@ public final class DefaultTsPayloadReaderFactory implements TsPayloadReader.Fact ...@@ -190,6 +190,15 @@ public final class DefaultTsPayloadReaderFactory implements TsPayloadReader.Fact
} }
} }
/*
* This is a special Section Reader that blindly forwards the sections to the decoder
* There are many simple DVB-SI features that have their own dedicated track, and thus doesn't need
* additional pre-processing before actual decoding.
* Examples of such simple packets:
* - TDT/TOT (current time)
* - EIT (Name of the current and future programs)
* - AIT (used for interactive web browser on top of the broadcast)
*/
public class SectionPassthrough implements SectionPayloadReader { public class SectionPassthrough implements SectionPayloadReader {
private TimestampAdjuster timestampAdjuster = null; private TimestampAdjuster timestampAdjuster = null;
private final String mimeType; private final String mimeType;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment