OSDN Git Service

stop using trunk or dist directory in rec10 project.
[rec10/rec10-git.git] / jTsSplitter / jtssplitter / data / PMTData.java
1 /*
2  * jTsSplitter - java based mpeg2ts splitter.
3  * Copyright (C) 2009-2010 Yukikaze
4  */
5
6 package jtssplitter.data;
7
8 /**
9  * PMTのデータ。
10  * @author Yukikaze
11  */
12 public class PMTData {
13     /**
14      * プログラムの番号
15      * CS、BSだとチャンネル番号になる。
16      */
17     public int Program_Table;
18     /**
19      * Streamのタイプを決定する
20      */
21     public int Stream_Type;
22     public int PCR_PID;
23     public int Elementary_PID;
24 }