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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
/*
* dxr3spudecoder.h
*
* Copyright (C) 2004 Christian Gmeiner
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
#ifndef _DXR3SPUDECODER_H_
#define _DXR3SPUDECODER_H_
#include "dxr3vdrincludes.h"
#include <inttypes.h>
// ==================================
typedef struct sDxr3SpuPalDescr
{
uint8_t index;
uint8_t trans;
bool operator != (const sDxr3SpuPalDescr pd) const {
return index != pd.index && trans != pd.trans;
};
} aDxr3SpuPalDescr[4];
// ==================================
struct sDxr3SpuRect
{
int x1, y1;
int x2, y2;
int width()
{
return x2 - x1 + 1;
};
int height()
{
return y2 - y1 + 1;
};
bool operator != (const sDxr3SpuRect r) const
{
return r.x1 != x1 || r.y1 != y1 || r.x2 != x2 || r.y2 != y2;
};
};
// ==================================
class cDxr3SpuPalette
{
private:
uint32_t palette[16];
public:
void setPalette(const uint32_t * pal);
uint32_t getColor(uint8_t idx, uint8_t trans) const;
};
// ==================================
class cDxr3SpuBitmap
{
private:
sDxr3SpuRect bmpsize;
sDxr3SpuRect minsize[4];
uint8_t *bmp;
void putPixel(int xp, int yp, int len, uint8_t colorid);
void putFieldData(int field, uint8_t * data, uint8_t * endp);
public:
cDxr3SpuBitmap(sDxr3SpuRect size, uint8_t * fodd, uint8_t * eodd, uint8_t * feven, uint8_t * eeven);
~cDxr3SpuBitmap();
bool getMinSize(const aDxr3SpuPalDescr paldescr, sDxr3SpuRect & size) const;
cBitmap *getBitmap(const aDxr3SpuPalDescr paldescr, const cDxr3SpuPalette & pal, sDxr3SpuRect & size) const;
};
// ==================================
class cDxr3SpuDecoder : public cSpuDecoder
{
public:
cDxr3SpuDecoder();
~cDxr3SpuDecoder();
int setTime(uint32_t pts);
cSpuDecoder::eScaleMode getScaleMode(void);
void setScaleMode(cSpuDecoder::eScaleMode ScaleMode);
void setPalette(uint32_t * pal);
void setHighlight(uint16_t sx, uint16_t sy, uint16_t ex, uint16_t ey, uint32_t palette);
void clearHighlight();
void Empty();
#if VDRVERSNUM >= 10318
void processSPU(uint32_t pts, uint8_t * buf, bool AllowedShow);
#else
void processSPU(uint32_t pts, uint8_t * buf);
#endif
#if VDRVERSNUM >= 10311
void Hide();
void Draw();
bool IsVisible() { return osd != NULL; }
#endif
private:
cOsd * osd;
// processing state
uint8_t *spu;
uint32_t spupts;
bool clean;
bool ready;
enum spFlag { spNONE, spHIDE, spSHOW, spMENU };
spFlag state;
cSpuDecoder::eScaleMode scaleMode;
// highligh area
bool highlight;
sDxr3SpuRect hlpsize;
aDxr3SpuPalDescr hlpDescr;
// palette
cDxr3SpuPalette palette;
// spu info's
sDxr3SpuRect size;
aDxr3SpuPalDescr palDescr;
uint16_t DCSQ_offset;
uint16_t prev_DCSQ_offset;
cDxr3SpuBitmap *spubmp;
int cmdOffs() { return ((spu[2] << 8) | spu[3]); }
int spuSize() { return ((spu[0] << 8) | spu[1]); }
int ScaleYcoord(int value);
int ScaleYres(int value);
void DrawBmp(sDxr3SpuRect & size, cBitmap * bmp);
};
// ==================================
inline uint32_t cDxr3SpuPalette::getColor(uint8_t idx, uint8_t trans) const
{
uint8_t t = trans == 0x0f ? 0xff : trans << 4;
return palette[idx] | (t << 24);
}
#endif /*_DXR3SPUDECODER_H_*/
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
|