summaryrefslogtreecommitdiffstats
path: root/src/k9play.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 00:32:19 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 00:32:19 +0000
commit0d382a262c0638d0f572fc37193ccc5ed3dc895f (patch)
tree8578dcddfce4191f3f7a142a37769df7add48475 /src/k9play.h
downloadk9copy-0d382a262c0638d0f572fc37193ccc5ed3dc895f.tar.gz
k9copy-0d382a262c0638d0f572fc37193ccc5ed3dc895f.zip
Added old abandoned version of k9copy
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1091546 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/k9play.h')
-rw-r--r--src/k9play.h101
1 files changed, 101 insertions, 0 deletions
diff --git a/src/k9play.h b/src/k9play.h
new file mode 100644
index 0000000..8a9232a
--- /dev/null
+++ b/src/k9play.h
@@ -0,0 +1,101 @@
+//
+// C++ Interface: k9play
+//
+// Description:
+//
+//
+// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2006
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+#ifndef K9PLAY_H
+#define K9PLAY_H
+
+#include "k9common.h"
+#include "k9dvdtitle.h"
+#include <qfile.h>
+/**
+ @author Jean-Michel PETIT <k9copy@free.fr>
+*/
+
+typedef struct {
+ uint title;
+ uint chapter;
+ uint cell;
+ uint32_t sector;
+ uint64_t bytesWritten;
+ uint64_t bytesRead;
+ uint64_t bytesSkipped;
+ uint64_t bytesChapters;
+} k9play_st;
+
+
+class k9SaveImage;
+class k9play{
+private:
+ int m_title;
+ k9DVD *m_dvd;
+ k9DVDTitle *m_dvdTitle;
+ QString m_device;
+ QFile *m_output;
+ QFile m_stderr;
+ uint32_t m_totalBytes;
+ uint32_t m_startSector,m_endSector;
+ uint32_t m_pos,m_length;
+ double m_vampsFactor;
+ uint64_t m_inputSize;
+ uint64_t m_totalSize;
+ uint64_t m_chapterSize;
+ uint64_t m_dvdSize;
+ uint m_chapter;
+ uint m_cell;
+ bool m_initstatus;
+ bool m_continue;
+ bool m_firstPass;
+ bool m_forcedFactor;
+ bool m_useCache;
+ QString m_inject;
+ QStringList m_audioFilter;
+ QStringList m_subpictureFilter;
+ QStringList m_chapterList;
+ void kdebug(QString const & _msg);
+ bool readNavPack (k9DVDFile *fh, dsi_t *dsi,int sector, uchar *_buffer);
+ void insert_dummy_pack (int8_t *buf);
+ void insert_nav_pack (int8_t *buf);
+ void saveStatus(k9play_st _status);
+ void readStatus(k9play_st &_status);
+ void flush(k9SaveImage &_saveImage);
+public:
+ k9play();
+
+ ~k9play();
+ void execute();
+ void play();
+ void writeOutput(QString const & _msg);
+
+ void setTitle(int _value) {m_title = _value;};
+
+ void setDevice(const QString& _value) {m_device = _value;};
+
+ void setstartSector(QString _value);
+ void setendSector(QString _value);
+ void setaudioFilter(QString _value);
+ void setsubpictureFilter(QString _value);
+ void setchapterList(QString _value);
+ void setvampsFactor(QString _value);
+ void setinputSize(QString _value);
+ void settotalSize(QString _value);
+ void setchapter(QString _value);
+ void setcell(QString _value);
+ void setinject(QString _value);
+ void setdvdSize(QString _value);
+ void setchapterSize(QString _value);
+ void setinitStatus(bool _value);
+ void setcontinue (bool _value);
+ void setfirstPass (bool _value);
+ void setforcedFactor(bool _value);
+ void setuseCache(bool _value);
+};
+
+#endif