annotate vobsub.c @ 5869:412ff784c971

Avoid bogus file not found message if vobsub isn'T forced (autodetect).
author atmos4
date Sat, 27 Apr 2002 20:46:39 +0000
parents 80af8b0589e1
children 7bea806b9c5f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
1 /*
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
2 * Some code freely inspired from VobSub <URL:http://vobsub.edensrising.com>,
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
3 * with kind permission from Gabest <gabest@freemail.hu>
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
4 */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
5 /* #define HAVE_GETLINE */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
6 #include <ctype.h>
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
7 #include <errno.h>
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
8 #include <stdio.h>
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
9 #include <stdlib.h>
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
10 #include <string.h>
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
11 #include <fcntl.h>
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
12 #include <unistd.h>
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
13 #include <sys/stat.h>
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
14 #include <sys/types.h>
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
15
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
16 #include "config.h"
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
17
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
18 #include "stream.h"
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
19 #include "vobsub.h"
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
20 #include "spudec.h"
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
21 #include "mp_msg.h"
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
22
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
23 extern int vobsub_id;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
24
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
25 extern int verbose;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
26
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
27 #ifdef HAVE_GETLINE
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
28 extern ssize_t getline(char **, size_t *, FILE *);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
29 #else
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
30 /* FIXME This should go into a general purpose library or even a
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
31 separate file. */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
32 static ssize_t
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
33 getline (char **lineptr, size_t *n, FILE *stream)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
34 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
35 size_t res = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
36 int c;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
37 if (*lineptr == NULL) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
38 *lineptr = malloc(4096);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
39 if (*lineptr)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
40 *n = 4096;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
41 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
42 else if (*n == 0) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
43 char *tmp = realloc(*lineptr, 4096);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
44 if (tmp) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
45 *lineptr = tmp;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
46 *n = 4096;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
47 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
48 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
49 if (*lineptr == NULL || *n == 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
50 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
51
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
52 for (c = fgetc(stream); c != EOF; c = fgetc(stream)) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
53 if (res + 1 >= *n) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
54 char *tmp = realloc(*lineptr, *n * 2);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
55 if (tmp == NULL)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
56 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
57 *lineptr = tmp;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
58 *n *= 2;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
59 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
60 (*lineptr)[res++] = c;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
61 if (c == '\n') {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
62 (*lineptr)[res] = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
63 return res;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
64 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
65 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
66 if (res == 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
67 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
68 (*lineptr)[res] = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
69 return res;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
70 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
71 #endif
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
72
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
73 /**********************************************************************
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
74 * MPEG parsing
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
75 **********************************************************************/
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
76
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
77 typedef struct {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
78 stream_t *stream;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
79 unsigned int pts;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
80 int aid;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
81 unsigned char *packet;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
82 unsigned int packet_reserve;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
83 unsigned int packet_size;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
84 } mpeg_t;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
85
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
86 static mpeg_t *
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
87 mpeg_open(const char *filename)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
88 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
89 mpeg_t *res = malloc(sizeof(mpeg_t));
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
90 int err = res == NULL;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
91 if (!err) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
92 int fd;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
93 res->pts = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
94 res->aid = -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
95 res->packet = NULL;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
96 res->packet_size = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
97 res->packet_reserve = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
98 fd = open(filename, O_RDONLY);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
99 err = fd < 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
100 if (!err) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
101 res->stream = new_stream(fd, STREAMTYPE_FILE);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
102 err = res->stream == NULL;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
103 if (err)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
104 close(fd);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
105 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
106 if (err)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
107 free(res);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
108 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
109 return err ? NULL : res;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
110 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
111
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
112 static void
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
113 mpeg_free(mpeg_t *mpeg)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
114 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
115 int fd;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
116 if (mpeg->packet)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
117 free(mpeg->packet);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
118 fd = mpeg->stream->fd;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
119 free_stream(mpeg->stream);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
120 close(fd);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
121 free(mpeg);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
122 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
123
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
124 static int
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
125 mpeg_eof(mpeg_t *mpeg)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
126 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
127 return stream_eof(mpeg->stream);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
128 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
129
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
130 static off_t
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
131 mpeg_tell(mpeg_t *mpeg)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
132 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
133 return stream_tell(mpeg->stream);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
134 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
135
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
136 static int
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
137 mpeg_run(mpeg_t *mpeg)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
138 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
139 unsigned int len, idx, version;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
140 int c;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
141 /* Goto start of a packet, it starts with 0x000001?? */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
142 const unsigned char wanted[] = { 0, 0, 1 };
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
143 unsigned char buf[5];
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
144
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
145 mpeg->aid = -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
146 mpeg->packet_size = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
147 if (stream_read(mpeg->stream, buf, 4) != 4)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
148 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
149 while (memcmp(buf, wanted, sizeof(wanted)) != 0) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
150 c = stream_read_char(mpeg->stream);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
151 if (c < 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
152 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
153 memmove(buf, buf + 1, 3);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
154 buf[3] = c;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
155 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
156 switch (buf[3]) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
157 case 0xb9: /* System End Code */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
158 break;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
159 case 0xba: /* Packet start code */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
160 c = stream_read_char(mpeg->stream);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
161 if (c < 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
162 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
163 if ((c & 0xc0) == 0x40)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
164 version = 4;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
165 else if ((c & 0xf0) == 0x20)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
166 version = 2;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
167 else {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
168 fprintf(stderr, "Unsupported MPEG version: 0x%02x", c);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
169 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
170 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
171 if (version == 4) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
172 if (!stream_skip(mpeg->stream, 9))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
173 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
174 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
175 else if (version == 2) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
176 if (!stream_skip(mpeg->stream, 7))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
177 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
178 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
179 else
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
180 abort();
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
181 break;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
182 case 0xbd: /* packet */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
183 if (stream_read(mpeg->stream, buf, 2) != 2)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
184 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
185 len = buf[0] << 8 | buf[1];
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
186 idx = mpeg_tell(mpeg);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
187 c = stream_read_char(mpeg->stream);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
188 if (c < 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
189 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
190 if ((c & 0xC0) == 0x40) { /* skip STD scale & size */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
191 if (stream_read_char(mpeg->stream) < 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
192 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
193 c = stream_read_char(mpeg->stream);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
194 if (c < 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
195 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
196 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
197 if ((c & 0xf0) == 0x20) { /* System-1 stream timestamp */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
198 /* Do we need this? */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
199 abort();
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
200 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
201 else if ((c & 0xf0) == 0x30) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
202 /* Do we need this? */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
203 abort();
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
204 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
205 else if ((c & 0xc0) == 0x80) { /* System-2 (.VOB) stream */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
206 unsigned int pts_flags, hdrlen, dataidx;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
207 c = stream_read_char(mpeg->stream);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
208 if (c < 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
209 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
210 pts_flags = c;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
211 c = stream_read_char(mpeg->stream);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
212 if (c < 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
213 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
214 hdrlen = c;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
215 dataidx = mpeg_tell(mpeg) + hdrlen;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
216 if (dataidx > idx + len) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
217 fprintf(stderr, "Invalid header length: %d (total length: %d, idx: %d, dataidx: %d)\n",
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
218 hdrlen, len, idx, dataidx);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
219 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
220 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
221 if ((pts_flags & 0xc0) == 0x80) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
222 if (stream_read(mpeg->stream, buf, 5) != 5)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
223 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
224 if (!(((buf[0] & 0xf0) == 0x20) && (buf[0] & 1) && (buf[2] & 1) && (buf[4] & 1))) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
225 fprintf(stderr, "vobsub PTS error: 0x%02x %02x%02x %02x%02x \n",
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
226 buf[0], buf[1], buf[2], buf[3], buf[4]);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
227 mpeg->pts = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
228 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
229 else
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
230 mpeg->pts = ((buf[0] & 0x0e) << 29 | buf[1] << 22 | (buf[2] & 0xfe) << 14
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
231 | buf[3] << 7 | (buf[4] >> 1)) / 900;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
232 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
233 else /* if ((pts_flags & 0xc0) == 0xc0) */ {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
234 /* what's this? */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
235 /* abort(); */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
236 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
237 stream_seek(mpeg->stream, dataidx);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
238 mpeg->aid = stream_read_char(mpeg->stream);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
239 if (mpeg->aid < 0) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
240 fprintf(stderr, "Bogus aid %d\n", mpeg->aid);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
241 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
242 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
243 mpeg->packet_size = len - ((unsigned int) mpeg_tell(mpeg) - idx);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
244 if (mpeg->packet_reserve < mpeg->packet_size) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
245 if (mpeg->packet)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
246 free(mpeg->packet);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
247 mpeg->packet = malloc(mpeg->packet_size);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
248 if (mpeg->packet)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
249 mpeg->packet_reserve = mpeg->packet_size;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
250 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
251 if (mpeg->packet == NULL) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
252 perror("malloc failure");
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
253 mpeg->packet_reserve = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
254 mpeg->packet_size = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
255 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
256 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
257 if (stream_read(mpeg->stream, mpeg->packet, mpeg->packet_size) != mpeg->packet_size) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
258 perror("stream_read failure");
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
259 mpeg->packet_size = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
260 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
261 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
262 idx = len;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
263 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
264 break;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
265 case 0xbe: /* Padding */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
266 if (stream_read(mpeg->stream, buf, 2) != 2)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
267 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
268 len = buf[0] << 8 | buf[1];
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
269 if (len > 0 && !stream_skip(mpeg->stream, len))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
270 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
271 break;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
272 default:
5388
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
273 if (0xc0 <= buf[3] && buf[3] < 0xf0) {
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
274 /* MPEG audio or video */
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
275 if (stream_read(mpeg->stream, buf, 2) != 2)
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
276 return -1;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
277 len = buf[0] << 8 | buf[1];
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
278 if (len > 0 && !stream_skip(mpeg->stream, len))
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
279 return -1;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
280
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
281 }
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
282 else {
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
283 fprintf(stderr, "unknown header 0x%02X%02X%02X%02X\n",
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
284 buf[0], buf[1], buf[2], buf[3]);
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
285 return -1;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
286 }
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
287 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
288 return 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
289 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
290
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
291 /**********************************************************************
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
292 * Packet queue
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
293 **********************************************************************/
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
294
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
295 typedef struct {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
296 unsigned int pts100;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
297 off_t filepos;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
298 unsigned int size;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
299 unsigned char *data;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
300 } packet_t;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
301
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
302 typedef struct {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
303 char *id;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
304 packet_t *packets;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
305 unsigned int packets_reserve;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
306 unsigned int packets_size;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
307 unsigned int current_index;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
308 } packet_queue_t;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
309
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
310 static void
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
311 packet_construct(packet_t *pkt)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
312 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
313 pkt->pts100 = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
314 pkt->filepos = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
315 pkt->size = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
316 pkt->data = NULL;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
317 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
318
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
319 static void
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
320 packet_destroy(packet_t *pkt)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
321 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
322 if (pkt->data)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
323 free(pkt->data);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
324 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
325
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
326 static void
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
327 packet_queue_construct(packet_queue_t *queue)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
328 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
329 queue->id = NULL;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
330 queue->packets = NULL;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
331 queue->packets_reserve = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
332 queue->packets_size = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
333 queue->current_index = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
334 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
335
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
336 static void
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
337 packet_queue_destroy(packet_queue_t *queue)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
338 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
339 if (queue->packets) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
340 while (queue->packets_size--)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
341 packet_destroy(queue->packets + queue->packets_size);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
342 free(queue->packets);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
343 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
344 return;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
345 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
346
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
347 /* Make sure there is enough room for needed_size packets in the
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
348 packet queue. */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
349 static int
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
350 packet_queue_ensure(packet_queue_t *queue, unsigned int needed_size)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
351 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
352 if (queue->packets_reserve < needed_size) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
353 if (queue->packets) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
354 packet_t *tmp = realloc(queue->packets, 2 * queue->packets_reserve * sizeof(packet_t));
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
355 if (tmp == NULL) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
356 perror("realloc failure");
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
357 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
358 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
359 queue->packets = tmp;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
360 queue->packets_reserve *= 2;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
361 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
362 else {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
363 queue->packets = malloc(sizeof(packet_t));
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
364 if (queue->packets == NULL) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
365 perror("malloc failure");
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
366 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
367 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
368 queue->packets_reserve = 1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
369 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
370 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
371 return 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
372 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
373
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
374 /* add one more packet */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
375 static int
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
376 packet_queue_grow(packet_queue_t *queue)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
377 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
378 if (packet_queue_ensure(queue, queue->packets_size + 1) < 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
379 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
380 packet_construct(queue->packets + queue->packets_size);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
381 ++queue->packets_size;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
382 return 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
383 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
384
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
385 /* insert a new packet, duplicating pts from the current one */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
386 static int
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
387 packet_queue_insert(packet_queue_t *queue)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
388 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
389 packet_t *pkts;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
390 if (packet_queue_ensure(queue, queue->packets_size + 1) < 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
391 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
392 /* XXX packet_size does not reflect the real thing here, it will be updated a bit later */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
393 memmove(queue->packets + queue->current_index + 2,
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
394 queue->packets + queue->current_index + 1,
4085
dc0a91965b97 Support vobsub without index files.
kmkaplan
parents: 4080
diff changeset
395 sizeof(packet_t) * (queue->packets_size - queue->current_index - 1));
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
396 pkts = queue->packets + queue->current_index;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
397 ++queue->packets_size;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
398 ++queue->current_index;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
399 packet_construct(pkts + 1);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
400 pkts[1].pts100 = pkts[0].pts100;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
401 pkts[1].filepos = pkts[0].filepos;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
402 return 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
403 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
404
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
405 /**********************************************************************
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
406 * Vosub
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
407 **********************************************************************/
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
408
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
409 typedef struct {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
410 void *spudec;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
411 unsigned int palette[16];
5833
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
412 unsigned int cuspal[4];
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
413 int delay;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
414 unsigned int custom;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
415 unsigned int have_palette;
5388
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
416 unsigned int orig_frame_width, orig_frame_height;
5563
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
417 unsigned int origin_x, origin_y;
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
418 /* index */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
419 packet_queue_t *spu_streams;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
420 unsigned int spu_streams_size;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
421 unsigned int spu_streams_current;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
422 } vobsub_t;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
423
4085
dc0a91965b97 Support vobsub without index files.
kmkaplan
parents: 4080
diff changeset
424 /* Make sure that the spu stream idx exists. */
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
425 static int
4085
dc0a91965b97 Support vobsub without index files.
kmkaplan
parents: 4080
diff changeset
426 vobsub_ensure_spu_stream(vobsub_t *vob, unsigned int index)
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
427 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
428 if (index >= vob->spu_streams_size) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
429 /* This is a new stream */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
430 if (vob->spu_streams) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
431 packet_queue_t *tmp = realloc(vob->spu_streams, (index + 1) * sizeof(packet_queue_t));
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
432 if (tmp == NULL) {
4085
dc0a91965b97 Support vobsub without index files.
kmkaplan
parents: 4080
diff changeset
433 perror("vobsub_ensure_spu_stream: realloc failure");
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
434 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
435 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
436 vob->spu_streams = tmp;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
437 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
438 else {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
439 vob->spu_streams = malloc((index + 1) * sizeof(packet_queue_t));
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
440 if (vob->spu_streams == NULL) {
4085
dc0a91965b97 Support vobsub without index files.
kmkaplan
parents: 4080
diff changeset
441 perror("vobsub_ensure_spu_stream: malloc failure");
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
442 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
443 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
444 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
445 while (vob->spu_streams_size <= index) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
446 packet_queue_construct(vob->spu_streams + vob->spu_streams_size);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
447 ++vob->spu_streams_size;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
448 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
449 }
4085
dc0a91965b97 Support vobsub without index files.
kmkaplan
parents: 4080
diff changeset
450 return 0;
dc0a91965b97 Support vobsub without index files.
kmkaplan
parents: 4080
diff changeset
451 }
dc0a91965b97 Support vobsub without index files.
kmkaplan
parents: 4080
diff changeset
452
dc0a91965b97 Support vobsub without index files.
kmkaplan
parents: 4080
diff changeset
453 static int
dc0a91965b97 Support vobsub without index files.
kmkaplan
parents: 4080
diff changeset
454 vobsub_add_id(vobsub_t *vob, const char *id, size_t idlen, const unsigned int index)
dc0a91965b97 Support vobsub without index files.
kmkaplan
parents: 4080
diff changeset
455 {
dc0a91965b97 Support vobsub without index files.
kmkaplan
parents: 4080
diff changeset
456 if (vobsub_ensure_spu_stream(vob, index) < 0)
dc0a91965b97 Support vobsub without index files.
kmkaplan
parents: 4080
diff changeset
457 return -1;
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
458 if (id && idlen) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
459 if (vob->spu_streams[index].id)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
460 free(vob->spu_streams[index].id);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
461 vob->spu_streams[index].id = malloc(idlen + 1);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
462 if (vob->spu_streams[index].id == NULL) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
463 perror("vobsub_add_id: malloc failure");
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
464 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
465 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
466 vob->spu_streams[index].id[idlen] = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
467 memcpy(vob->spu_streams[index].id, id, idlen);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
468 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
469 vob->spu_streams_current = index;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
470 if (verbose)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
471 fprintf(stderr, "[vobsub] subtitle (vobsubid): %d language %s\n",
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
472 index, vob->spu_streams[index].id);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
473 return 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
474 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
475
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
476 static int
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
477 vobsub_add_timestamp(vobsub_t *vob, off_t filepos, unsigned int ms)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
478 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
479 packet_queue_t *queue;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
480 packet_t *pkt;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
481 if (vob->spu_streams == 0) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
482 fprintf(stderr, "[vobsub] warning, binning some index entries. Check your index file\n");
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
483 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
484 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
485 queue = vob->spu_streams + vob->spu_streams_current;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
486 if (packet_queue_grow(queue) >= 0) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
487 pkt = queue->packets + (queue->packets_size - 1);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
488 pkt->filepos = filepos;
5563
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
489 pkt->pts100 = ms * 90;
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
490 return 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
491 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
492 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
493 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
494
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
495 static int
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
496 vobsub_parse_id(vobsub_t *vob, const char *line)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
497 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
498 // id: xx, index: n
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
499 size_t idlen;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
500 const char *p, *q;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
501 p = line;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
502 while (isspace(*p))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
503 ++p;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
504 q = p;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
505 while (isalpha(*q))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
506 ++q;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
507 idlen = q - p;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
508 if (idlen == 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
509 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
510 ++q;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
511 while (isspace(*q))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
512 ++q;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
513 if (strncmp("index:", q, 6))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
514 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
515 q += 6;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
516 while (isspace(*q))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
517 ++q;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
518 if (!isdigit(*q))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
519 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
520 return vobsub_add_id(vob, p, idlen, atoi(q));
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
521 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
522
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
523 static int
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
524 vobsub_parse_timestamp(vobsub_t *vob, const char *line)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
525 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
526 // timestamp: HH:MM:SS.mmm, filepos: 0nnnnnnnnn
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
527 const char *p;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
528 int h, m, s, ms;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
529 off_t filepos;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
530 while (isspace(*line))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
531 ++line;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
532 p = line;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
533 while (isdigit(*p))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
534 ++p;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
535 if (p - line != 2)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
536 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
537 h = atoi(line);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
538 if (*p != ':')
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
539 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
540 line = ++p;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
541 while (isdigit(*p))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
542 ++p;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
543 if (p - line != 2)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
544 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
545 m = atoi(line);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
546 if (*p != ':')
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
547 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
548 line = ++p;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
549 while (isdigit(*p))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
550 ++p;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
551 if (p - line != 2)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
552 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
553 s = atoi(line);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
554 if (*p != ':')
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
555 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
556 line = ++p;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
557 while (isdigit(*p))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
558 ++p;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
559 if (p - line != 3)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
560 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
561 ms = atoi(line);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
562 if (*p != ',')
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
563 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
564 line = p + 1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
565 while (isspace(*line))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
566 ++line;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
567 if (strncmp("filepos:", line, 8))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
568 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
569 line += 8;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
570 while (isspace(*line))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
571 ++line;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
572 if (! isxdigit(*line))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
573 return -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
574 filepos = strtol(line, NULL, 16);
5833
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
575 return vobsub_add_timestamp(vob, filepos, vob->delay + ms + 1000 * (s + 60 * (m + 60 * h)));
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
576 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
577
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
578 static int
5388
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
579 vobsub_parse_size(vobsub_t *vob, const char *line)
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
580 {
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
581 // size: WWWxHHH
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
582 char *p;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
583 while (isspace(*line))
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
584 ++line;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
585 if (!isdigit(*line))
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
586 return -1;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
587 vob->orig_frame_width = strtoul(line, &p, 10);
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
588 if (*p != 'x')
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
589 return -1;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
590 ++p;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
591 vob->orig_frame_height = strtoul(p, NULL, 10);
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
592 return 0;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
593 }
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
594
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
595 static int
5563
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
596 vobsub_parse_origin(vobsub_t *vob, const char *line)
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
597 {
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
598 // org: X,Y
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
599 char *p;
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
600 while (isspace(*line))
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
601 ++line;
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
602 if (!isdigit(*line))
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
603 return -1;
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
604 vob->origin_x = strtoul(line, &p, 10);
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
605 if (*p != ',')
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
606 return -1;
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
607 ++p;
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
608 vob->origin_y = strtoul(p, NULL, 10);
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
609 return 0;
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
610 }
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
611
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
612 static int
5388
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
613 vobsub_parse_palette(vobsub_t *vob, const char *line)
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
614 {
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
615 // palette: XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
616 unsigned int n;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
617 n = 0;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
618 while (1) {
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
619 const char *p;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
620 while (isspace(*line))
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
621 ++line;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
622 p = line;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
623 while (isxdigit(*p))
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
624 ++p;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
625 if (p - line != 6)
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
626 return -1;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
627 vob->palette[n++] = strtoul(line, NULL, 16);
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
628 if (n == 16)
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
629 break;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
630 if (*p == ',')
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
631 ++p;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
632 line = p;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
633 }
5833
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
634 vob->have_palette = 1;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
635 return 0;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
636 }
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
637
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
638 static int
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
639 vobsub_parse_custom(vobsub_t *vob, const char *line)
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
640 {
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
641 //custom colors: OFF/ON(0/1)
5839
80af8b0589e1 Fix bug in LR's patch.
atmos4
parents: 5833
diff changeset
642 if ((strncmp("ON", line + 15, 2) == 0)||strncmp("1", line + 15, 1) == 0)
5833
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
643 vob->custom=1;
5839
80af8b0589e1 Fix bug in LR's patch.
atmos4
parents: 5833
diff changeset
644 else if ((strncmp("OFF", line + 15, 3) == 0)||strncmp("0", line + 15, 1) == 0)
5833
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
645 vob->custom=0;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
646 else
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
647 return -1;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
648 return 0;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
649 }
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
650
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
651 static int
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
652 vobsub_parse_cuspal(vobsub_t *vob, const char *line)
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
653 {
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
654 //colors: XXXXXX, XXXXXX, XXXXXX, XXXXXX
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
655 unsigned int n;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
656 n = 0;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
657 line += 40;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
658 while(1){
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
659 const char *p;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
660 while (isspace(*line))
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
661 ++line;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
662 p=line;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
663 while (isxdigit(*p))
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
664 ++p;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
665 if (p - line !=6)
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
666 return -1;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
667 vob->cuspal[n++] = strtoul(line, NULL,16);
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
668 if (n==4)
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
669 break;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
670 if(*p == ',')
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
671 ++p;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
672 line = p;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
673 }
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
674 return 0;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
675 }
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
676
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
677 /* don't know how to use tridx */
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
678 static int
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
679 vobsub_parse_tridx(vobsub_t *vob, const char *line)
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
680 {
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
681 //tridx: XXXX
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
682 int i;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
683 int tridx;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
684 tridx = strtoul((line + 26), NULL, 16);
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
685 tridx = ((tridx&0x1000)>>12) | ((tridx&0x100)>>7) | ((tridx&0x10)>>2) | ((tridx&1)<<3);
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
686 }
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
687
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
688 static int
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
689 vobsub_parse_delay(vobsub_t *vob, const char *line)
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
690 {
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
691 int h, m, s, ms;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
692 int forward = 1;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
693 if (*(line + 7) == '+'){
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
694 forward = 1;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
695 line++;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
696 }
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
697 else if (*(line + 7) == '-'){
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
698 forward = -1;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
699 line++;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
700 }
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
701 fprintf(stderr, "forward=%d", forward);
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
702 h = atoi(line + 7);
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
703 fprintf(stderr, "h=%d," ,h);
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
704 m = atoi(line + 10);
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
705 fprintf(stderr, "m=%d,", m);
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
706 s = atoi(line + 13);
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
707 fprintf(stderr, "s=%d,", s);
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
708 ms = atoi(line + 16);
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
709 fprintf(stderr, "ms=%d", ms);
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
710 vob->delay = ms + 1000 * (s + 60 * (m + 60 * h)) * forward;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
711 return 0;
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
712 }
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
713
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
714 static int
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
715 vobsub_set_lang(vobsub_t *vob, const char *line)
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
716 {
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
717 if (vobsub_id == -1)
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
718 vobsub_id = atoi(line + 8);
5388
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
719 return 0;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
720 }
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
721
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
722 static int
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
723 vobsub_parse_one_line(vobsub_t *vob, FILE *fd)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
724 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
725 ssize_t line_size;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
726 int res = -1;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
727 do {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
728 int line_reserve = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
729 char *line = NULL;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
730 line_size = getline(&line, &line_reserve, fd);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
731 if (line_size < 0) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
732 if (line)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
733 free(line);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
734 break;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
735 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
736 if (*line == 0 || *line == '\r' || *line == '\n' || *line == '#')
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
737 continue;
5833
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
738 else if (strncmp("langidx:", line, 8) == 0)
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
739 res = vobsub_set_lang(vob, line);
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
740 else if (strncmp("delay:", line, 6) == 0)
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
741 res = vobsub_parse_delay(vob, line);
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
742 else if (strncmp("id:", line, 3) == 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
743 res = vobsub_parse_id(vob, line + 3);
5388
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
744 else if (strncmp("palette:", line, 8) == 0)
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
745 res = vobsub_parse_palette(vob, line + 8);
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
746 else if (strncmp("size:", line, 5) == 0)
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
747 res = vobsub_parse_size(vob, line + 5);
5563
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
748 else if (strncmp("org:", line, 4) == 0)
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
749 res = vobsub_parse_origin(vob, line + 4);
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
750 else if (strncmp("timestamp:", line, 10) == 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
751 res = vobsub_parse_timestamp(vob, line + 10);
5833
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
752 else if (strncmp("custom colors:", line, 14) == 0)
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
753 //custom colors: ON/OFF, tridx: XXXX, colors: XXXXXX, XXXXXX, XXXXXX,XXXXXX
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
754 res = vobsub_parse_cuspal(vob, line) + vobsub_parse_tridx(vob, line) + vobsub_parse_custom(vob, line);
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
755 else {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
756 if (verbose)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
757 fprintf(stderr, "vobsub: ignoring %s", line);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
758 continue;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
759 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
760 if (res < 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
761 fprintf(stderr, "ERROR in %s", line);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
762 break;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
763 } while (1);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
764 return res;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
765 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
766
5388
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
767 int
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
768 vobsub_parse_ifo(const char *const name, unsigned int *palette, unsigned int *width, unsigned int *height, int force)
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
769 {
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
770 int res = -1;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
771 FILE *fd = fopen(name, "rb");
5869
412ff784c971 Avoid bogus file not found message if vobsub isn'T forced (autodetect).
atmos4
parents: 5839
diff changeset
772 if (fd == NULL) {
412ff784c971 Avoid bogus file not found message if vobsub isn'T forced (autodetect).
atmos4
parents: 5839
diff changeset
773 if (force)
412ff784c971 Avoid bogus file not found message if vobsub isn'T forced (autodetect).
atmos4
parents: 5839
diff changeset
774 perror("Can't open IFO file");
412ff784c971 Avoid bogus file not found message if vobsub isn'T forced (autodetect).
atmos4
parents: 5839
diff changeset
775 } else {
5388
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
776 // parse IFO header
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
777 unsigned char block[0x800];
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
778 const char *const ifo_magic = "DVDVIDEO-VTS";
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
779 if (fread(block, sizeof(block), 1, fd) != 1) {
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
780 if (force)
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
781 perror("Can't read IFO header");
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
782 } else if (memcmp(block, ifo_magic, strlen(ifo_magic) + 1))
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
783 fprintf(stderr, "Bad magic in IFO header\n");
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
784 else {
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
785 unsigned long pgci_sector = block[0xcc] << 24 | block[0xcd] << 16
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
786 | block[0xce] << 8 | block[0xcf];
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
787 int standard = (block[0x200] & 0x30) >> 4;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
788 int resolution = (block[0x201] & 0x0c) >> 2;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
789 *height = standard ? 576 : 480;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
790 *width = 0;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
791 switch (resolution) {
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
792 case 0x0:
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
793 *width = 720;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
794 break;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
795 case 0x1:
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
796 *width = 704;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
797 break;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
798 case 0x2:
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
799 *width = 352;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
800 break;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
801 case 0x3:
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
802 *width = 352;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
803 *height /= 2;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
804 break;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
805 default:
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
806 fprintf(stderr, "Unknown resolution %d \n", resolution);
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
807 }
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
808 if (fseek(fd, pgci_sector * sizeof(block), SEEK_SET)
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
809 || fread(block, sizeof(block), 1, fd) != 1)
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
810 perror("Can't read IFO PGCI");
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
811 else {
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
812 unsigned long idx;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
813 unsigned long pgc_offset = block[0xc] << 24 | block[0xd] << 16
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
814 | block[0xe] << 8 | block[0xf];
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
815 for (idx = 0; idx < 16; ++idx) {
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
816 unsigned char *p = block + pgc_offset + 0xa4 + 4 * idx;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
817 palette[idx] = p[0] << 24 | p[1] << 16 | p[2] << 8 | p[3];
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
818 }
5833
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
819 //vob->have_palette = 1;
5388
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
820 res = 0;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
821 }
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
822 }
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
823 fclose(fd);
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
824 }
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
825 return res;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
826 }
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
827
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
828 void *
4787
1ee5574d67d6 Fix automatic vobsub detection and make it silent.
atmos4
parents: 4786
diff changeset
829 vobsub_open(const char *const name, const int force)
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
830 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
831 vobsub_t *vob = malloc(sizeof(vobsub_t));
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
832 if (vob) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
833 char *buf;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
834 vob->spudec = NULL;
5388
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
835 vob->orig_frame_width = 0;
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
836 vob->orig_frame_height = 0;
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
837 vob->spu_streams = NULL;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
838 vob->spu_streams_size = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
839 vob->spu_streams_current = 0;
5833
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
840 vob->delay = 0;
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
841 buf = malloc((strlen(name) + 5) * sizeof(char));
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
842 if (buf) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
843 FILE *fd;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
844 mpeg_t *mpg;
5388
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
845 /* read in the info file */
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
846 strcpy(buf, name);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
847 strcat(buf, ".ifo");
5388
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
848 vobsub_parse_ifo(buf, vob->palette, &vob->orig_frame_width, &vob->orig_frame_height, force);
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
849 /* read in the index */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
850 strcpy(buf, name);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
851 strcat(buf, ".idx");
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
852 fd = fopen(buf, "rb");
4787
1ee5574d67d6 Fix automatic vobsub detection and make it silent.
atmos4
parents: 4786
diff changeset
853 if (fd == NULL) {
1ee5574d67d6 Fix automatic vobsub detection and make it silent.
atmos4
parents: 4786
diff changeset
854 if(force)
1ee5574d67d6 Fix automatic vobsub detection and make it silent.
atmos4
parents: 4786
diff changeset
855 perror("VobSub: Can't open IDX file");
1ee5574d67d6 Fix automatic vobsub detection and make it silent.
atmos4
parents: 4786
diff changeset
856 else
1ee5574d67d6 Fix automatic vobsub detection and make it silent.
atmos4
parents: 4786
diff changeset
857 return NULL;
1ee5574d67d6 Fix automatic vobsub detection and make it silent.
atmos4
parents: 4786
diff changeset
858 } else {
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
859 while (vobsub_parse_one_line(vob, fd) >= 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
860 /* NOOP */ ;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
861 fclose(fd);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
862 }
5833
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
863 /* if no palette in .idx then use custom colors */
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
864 if ((vob->custom == 0)&&(vob->have_palette!=1))
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
865 vob->custom = 1;
5388
3af2729c5c87 * New command line switch for mplayer & mencoder:
kmkaplan
parents: 4787
diff changeset
866 if (vob->orig_frame_width && vob->orig_frame_height)
5833
91d766389a5d VobSub updates, custom palette support and other stuff, can't write the name of the chinese(?) patch supplier.
atmos4
parents: 5563
diff changeset
867 vob->spudec = spudec_new_scaled_vobsub(vob->palette, vob->cuspal, vob->custom, vob->orig_frame_width, vob->orig_frame_height);
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
868
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
869 /* read the indexed mpeg_stream */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
870 strcpy(buf, name);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
871 strcat(buf, ".sub");
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
872 mpg = mpeg_open(buf);
4787
1ee5574d67d6 Fix automatic vobsub detection and make it silent.
atmos4
parents: 4786
diff changeset
873 if (mpg == NULL) {
1ee5574d67d6 Fix automatic vobsub detection and make it silent.
atmos4
parents: 4786
diff changeset
874 if(force)
1ee5574d67d6 Fix automatic vobsub detection and make it silent.
atmos4
parents: 4786
diff changeset
875 perror("VobSub: Can't open SUB file");
1ee5574d67d6 Fix automatic vobsub detection and make it silent.
atmos4
parents: 4786
diff changeset
876 } else {
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
877 long last_pts_diff = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
878 while (!mpeg_eof(mpg)) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
879 off_t pos = mpeg_tell(mpg);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
880 if (mpeg_run(mpg) < 0) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
881 if (!mpeg_eof(mpg))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
882 perror("mpeg_run error");
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
883 break;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
884 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
885 if (mpg->packet_size) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
886 if ((mpg->aid & 0xe0) == 0x20) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
887 unsigned int sid = mpg->aid & 0x1f;
4085
dc0a91965b97 Support vobsub without index files.
kmkaplan
parents: 4080
diff changeset
888 if (vobsub_ensure_spu_stream(vob, sid) >= 0) {
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
889 packet_queue_t *queue = vob->spu_streams + sid;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
890 /* get the packet to fill */
4085
dc0a91965b97 Support vobsub without index files.
kmkaplan
parents: 4080
diff changeset
891 if (queue->packets_size == 0 && packet_queue_grow(queue) < 0)
dc0a91965b97 Support vobsub without index files.
kmkaplan
parents: 4080
diff changeset
892 abort();
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
893 while (queue->current_index + 1 < queue->packets_size
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
894 && queue->packets[queue->current_index + 1].filepos <= pos)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
895 ++queue->current_index;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
896 if (queue->current_index < queue->packets_size) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
897 packet_t *pkt;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
898 if (queue->packets[queue->current_index].data) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
899 /* insert a new packet and fix the PTS ! */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
900 packet_queue_insert(queue);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
901 queue->packets[queue->current_index].pts100 =
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
902 mpg->pts + last_pts_diff;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
903 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
904 pkt = queue->packets + queue->current_index;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
905 last_pts_diff = pkt->pts100 - mpg->pts;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
906 /* FIXME: should not use mpg_sub internal informations, make a copy */
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
907 pkt->data = mpg->packet;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
908 pkt->size = mpg->packet_size;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
909 mpg->packet = NULL;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
910 mpg->packet_reserve = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
911 mpg->packet_size = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
912 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
913 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
914 else
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
915 fprintf(stderr, "don't know what to do with subtitle #%u\n", sid);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
916 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
917 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
918 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
919 vob->spu_streams_current = vob->spu_streams_size;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
920 while (vob->spu_streams_current-- > 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
921 vob->spu_streams[vob->spu_streams_current].current_index = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
922 mpeg_free(mpg);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
923 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
924 free(buf);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
925 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
926 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
927 return vob;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
928 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
929
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
930 void
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
931 vobsub_close(void *this)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
932 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
933 vobsub_t *vob = (vobsub_t *)this;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
934 if (vob->spudec)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
935 spudec_free(vob->spudec);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
936 if (vob->spu_streams) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
937 while (vob->spu_streams_size--)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
938 packet_queue_destroy(vob->spu_streams + vob->spu_streams_size);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
939 free(vob->spu_streams);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
940 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
941 free(vob);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
942 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
943
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
944 void vobsub_draw(void *this, int dxs, int dys, void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride))
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
945 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
946 vobsub_t *vob = (vobsub_t *)this;
5563
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
947 if (vob->spudec) {
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
948 spudec_draw_scaled(vob->spudec, dxs, dys, draw_alpha);
5563
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
949 }
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
950 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
951
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
952 void
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
953 vobsub_process(void *vobhandle, float pts)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
954 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
955 vobsub_t *vob = (vobsub_t *)vobhandle;
5563
71372b7125cf Sorry, fix vobsub duration the arpi way.
atmos4
parents: 5388
diff changeset
956 unsigned int pts100 = 90000 * pts;
4114
aeb27b09de8e Check for NULL vob->spudec before using.
kmkaplan
parents: 4085
diff changeset
957 if (vob->spudec) {
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
958 spudec_heartbeat(vob->spudec, pts100);
4114
aeb27b09de8e Check for NULL vob->spudec before using.
kmkaplan
parents: 4085
diff changeset
959 if (vob->spu_streams && 0 <= vobsub_id && (unsigned) vobsub_id < vob->spu_streams_size) {
aeb27b09de8e Check for NULL vob->spudec before using.
kmkaplan
parents: 4085
diff changeset
960 packet_queue_t *queue = vob->spu_streams + vobsub_id;
aeb27b09de8e Check for NULL vob->spudec before using.
kmkaplan
parents: 4085
diff changeset
961 while (queue->current_index < queue->packets_size) {
aeb27b09de8e Check for NULL vob->spudec before using.
kmkaplan
parents: 4085
diff changeset
962 packet_t *pkt = queue->packets + queue->current_index;
aeb27b09de8e Check for NULL vob->spudec before using.
kmkaplan
parents: 4085
diff changeset
963 if (pkt->pts100 <= pts100) {
aeb27b09de8e Check for NULL vob->spudec before using.
kmkaplan
parents: 4085
diff changeset
964 spudec_assemble(vob->spudec, pkt->data, pkt->size, pkt->pts100);
aeb27b09de8e Check for NULL vob->spudec before using.
kmkaplan
parents: 4085
diff changeset
965 ++queue->current_index;
aeb27b09de8e Check for NULL vob->spudec before using.
kmkaplan
parents: 4085
diff changeset
966 }
aeb27b09de8e Check for NULL vob->spudec before using.
kmkaplan
parents: 4085
diff changeset
967 else
aeb27b09de8e Check for NULL vob->spudec before using.
kmkaplan
parents: 4085
diff changeset
968 break;
4080
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
969 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
970 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
971 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
972 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
973
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
974 void
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
975 vobsub_reset(void *vobhandle)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
976 {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
977 vobsub_t *vob = (vobsub_t *)vobhandle;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
978 if (vob->spu_streams) {
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
979 unsigned int n = vob->spu_streams_size;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
980 while (n-- > 0)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
981 vob->spu_streams[n].current_index = 0;
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
982 }
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
983 if (vob->spudec)
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
984 spudec_reset(vob->spudec);
47bcafe1442e Add vobsub support.
kmkaplan
parents:
diff changeset
985 }