blob: 8a9232afd2d015e0c20dc60d79c785fa71498e2b (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
//
// C++ Interface: k9play
//
// Description:
//
//
// Author: Jean-Michel PETIT <[email protected]>, (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 <[email protected]>
*/
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
|