Add request type(/m3u) for Vu+PlayerHD (IOS).
[vuplus_transtreamproxy] / src / Mpeg.h
1 /*
2  * Mpeg.h
3  *
4  *  Created on: 2014. 6. 18.
5  *      Author: oskwon
6  */
7
8 #ifndef MPEG_H_
9 #define MPEG_H_
10
11 #include "trap.h"
12 #include "mpegts.h"
13 //----------------------------------------------------------------------
14
15 class HttpHeader;
16
17 class Mpeg : public MpegTS
18 {
19 public:
20         Mpeg(std::string file, bool request_time_seek) throw (trap)
21                 : MpegTS(file, request_time_seek)
22         {}
23         virtual ~Mpeg() throw () {}
24
25         void seek(HttpHeader &header);
26 };
27 //----------------------------------------------------------------------
28
29 #endif /* MPEG_H_ */