summaryrefslogtreecommitdiff
path: root/src/Mpeg.h
blob: 780d08028305257ac0675acf9c760dc0c3858d7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * Mpeg.h
 *
 *  Created on: 2014. 6. 18.
 *      Author: oskwon
 */

#ifndef MPEG_H_
#define MPEG_H_

#include "trap.h"
#include "mpegts.h"
//----------------------------------------------------------------------

class HttpHeader;

class Mpeg : public MpegTS
{
public:
	Mpeg(std::string file, bool request_time_seek) throw (trap)
		: MpegTS(file, request_time_seek)
	{}
	virtual ~Mpeg() throw () {}

	void seek(HttpHeader &header);
};
//----------------------------------------------------------------------

#endif /* MPEG_H_ */