summaryrefslogtreecommitdiff
path: root/src/Mpeg.h
diff options
context:
space:
mode:
authoroskwon <kos@dev3>2014-06-18 08:17:14 (GMT)
committeroskwon <kos@dev3>2014-06-18 10:17:42 (GMT)
commit0d5d66cdee3921eba4c11859fb4edc296339e746 (patch)
tree46b377ceb7cb93a4b5a1a35d2bf2496e58435ef8 /src/Mpeg.h
parent48a6d1332dc7f6791854511133bac81161db9a4d (diff)
Add request type(/m3u) for Vu+PlayerHD (IOS).
Remove up.sh and add some scripts. Some sources refactoring.
Diffstat (limited to 'src/Mpeg.h')
-rw-r--r--src/Mpeg.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/Mpeg.h b/src/Mpeg.h
new file mode 100644
index 0000000..780d080
--- /dev/null
+++ b/src/Mpeg.h
@@ -0,0 +1,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_ */