forked from vdr-projects/vdr-plugin-dvd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdvdspu.c
207 lines (180 loc) · 5.01 KB
/
dvdspu.c
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*
* DVD Player plugin for VDR
*
* Copyright (C) 2001.2002 Andreas Schultz <[email protected]>
*
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
* parts of this file are derived from the OMS program.
*
*/
/*****
*
* This file is part of the VDR program.
* This file was part of the OMS program.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, 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 General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*
*****/
#if 0
#define CTRLDEBUG
#undef DEBUG_CONTROL
#define DEBUG_CONTROL(format, args...) printf (format, ## args); fflush(NULL)
#else
#ifdef CTRLDEBUG
#undef CTRLDEBUG
#endif
#ifndef DEBUG_CONTROL
#define DEBUG_CONTROL(format, args...)
#endif
#endif
/*
* subpic_decode.c - converts DVD subtitles to an XPM image
*
* Mostly based on hard work by:
*
* Copyright (C) 2000 Samuel Hocevar <[email protected]>
* and Michel Lespinasse <[email protected]>
*
* Lots of rearranging by:
* Aaron Holtzman <[email protected]>
* Thomas Mirlacher <[email protected]>
* implemented reassembling
* cleaner implementation of SPU are saving
* overlaying (proof of concept for now)
* ... and yes, it works now with oms
* added tranparency (provided by the SPU hdr)
* changed structures for easy porting to MGAs DVD mode
*
* addapted for VDR by Andreas Schultz
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 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 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
*
*/
/*
* added some functions to extract some informations of the SPU command
* sequence (cSPUassembler::checkSPUHeader and related).
* needed for 'forced subtitles only' mode
*
*
* Code of checkSPUHeader and related functions are based on SPUClass.cpp from the NMM - Network-Integrated Multimedia Environment (www.networkmultimedia.org)
*
*/
/**
* fixed and willing to merge with xine's solution ..
*
* sven goethel [email protected]
*/
#include <assert.h>
#include <inttypes.h>
#include <malloc.h>
#include <string.h>
#include <vdr/tools.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "dvdspu.h"
//----------- cSPUdata -----------------------------------
simpleFIFO::simpleFIFO(int Size)
{
size = Size;
head = tail = 0;
buffer = (uint8_t *)malloc(2*size);
}
simpleFIFO::~simpleFIFO()
{
free(buffer);
}
int simpleFIFO::Put(const uint8_t *Data, int Count)
{
if (Count > 0) {
int rest = size - head;
int free = Free();
if (free <= 0)
return 0;
if (free < Count)
Count = free;
if (Count >= rest) {
memcpy(buffer + head, Data, rest);
if (Count - rest)
memcpy(buffer, Data + rest, Count - rest);
head = Count - rest;
}
else {
memcpy(buffer + head, Data, Count);
head += Count;
}
}
return Count;
}
int simpleFIFO::Get(uint8_t *Data, int Count)
{
if (Count > 0) {
int rest = size - tail;
int cont = Available();
if (rest <= 0)
return 0;
if (cont < Count)
Count = cont;
if (Count >= rest) {
memcpy(Data, buffer + tail, rest);
if (Count - rest)
memcpy(Data + rest, buffer, Count - rest);
tail = Count - rest;
} else {
memcpy(Data, buffer + tail, Count);
tail += Count;
}
}
return Count;
}
int simpleFIFO::Release(int Count)
{
if (Count > 0) {
int rest = size - tail;
int cont = Available();
if (rest <= 0)
return 0;
if (cont < Count)
Count = cont;
if (Count >= rest)
tail = Count - rest;
else
tail += Count;
}
return Count;
}
// ---------- cSPUassembler -----------------------------------
cSPUassembler::cSPUassembler(): simpleFIFO(SPU_BUFFER_SIZE) { };
int cSPUassembler::Put(const uint8_t *Data, int Count, uint64_t Pts)
{
if (Pts > 0)
pts = Pts;
return simpleFIFO::Put(Data, Count);
}