2 Copyright 2006-2007 Mark Calderbank
4 This file is part of VOMP.
6 VOMP is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 VOMP is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with VOMP; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 class DemuxerTS : public Demuxer
33 DemuxerTS(int p_vID = 0, int p_aID = 0);
35 int scan(UCHAR* buf, int len);
36 int findPTS(UCHAR* buf, int len, ULLONG* dest);
37 void setVID(int p_vID);
38 void setAID(int p_aID);
39 int put(UCHAR* buf, int len);
42 int processTS(UCHAR* buf);
44 UCHAR store[TS_SIZE]; // Storage for partial packets
45 int partPacket; // Length of partial packet stored from previous put()
46 bool parsed; // Whether PES packet to be submitted has been parsed yet
47 PESPacket vPacket; // Video PES packet under construction
48 PESPacket aPacket; // Audio PES packet under construction
49 int vID, aID; // TS IDs for video/audio
50 bool vActive, aActive; // Whether video/audio is actively being captured