Mercurial > mplayer.hg
annotate vobsub.c @ 5940:dd7b88bb76aa
10l
author | alex |
---|---|
date | Thu, 02 May 2002 16:09:54 +0000 |
parents | 412ff784c971 |
children | 7bea806b9c5f |
rev | line source |
---|---|
4080 | 1 /* |
2 * Some code freely inspired from VobSub <URL:http://vobsub.edensrising.com>, | |
3 * with kind permission from Gabest <gabest@freemail.hu> | |
4 */ | |
5 /* #define HAVE_GETLINE */ | |
6 #include <ctype.h> | |
7 #include <errno.h> | |
8 #include <stdio.h> | |
9 #include <stdlib.h> | |
10 #include <string.h> | |
11 #include <fcntl.h> | |
12 #include <unistd.h> | |
13 #include <sys/stat.h> | |
14 #include <sys/types.h> | |
15 | |
16 #include "config.h" | |
17 | |
18 #include "stream.h" | |
19 #include "vobsub.h" | |
20 #include "spudec.h" | |
21 #include "mp_msg.h" | |
22 | |
23 extern int vobsub_id; | |
24 | |
25 extern int verbose; | |
26 | |
27 #ifdef HAVE_GETLINE | |
28 extern ssize_t getline(char **, size_t *, FILE *); | |
29 #else | |
30 /* FIXME This should go into a general purpose library or even a | |
31 separate file. */ | |
32 static ssize_t | |
33 getline (char **lineptr, size_t *n, FILE *stream) | |
34 { | |
35 size_t res = 0; | |
36 int c; | |
37 if (*lineptr == NULL) { | |
38 *lineptr = malloc(4096); | |
39 if (*lineptr) | |
40 *n = 4096; | |
41 } | |
42 else if (*n == 0) { | |
43 char *tmp = realloc(*lineptr, 4096); | |
44 if (tmp) { | |
45 *lineptr = tmp; | |
46 *n = 4096; | |
47 } | |
48 } | |
49 if (*lineptr == NULL || *n == 0) | |
50 return -1; | |
51 | |
52 for (c = fgetc(stream); c != EOF; c = fgetc(stream)) { | |
53 if (res + 1 >= *n) { | |
54 char *tmp = realloc(*lineptr, *n * 2); | |
55 if (tmp == NULL) | |
56 return -1; | |
57 *lineptr = tmp; | |
58 *n *= 2; | |
59 } | |
60 (*lineptr)[res++] = c; | |
61 if (c == '\n') { | |
62 (*lineptr)[res] = 0; | |
63 return res; | |
64 } | |
65 } | |
66 if (res == 0) | |
67 return -1; | |
68 (*lineptr)[res] = 0; | |
69 return res; | |
70 } | |
71 #endif | |
72 | |
73 /********************************************************************** | |
74 * MPEG parsing | |
75 **********************************************************************/ | |
76 | |
77 typedef struct { | |
78 stream_t *stream; | |
79 unsigned int pts; | |
80 int aid; | |
81 unsigned char *packet; | |
82 unsigned int packet_reserve; | |
83 unsigned int packet_size; | |
84 } mpeg_t; | |
85 | |
86 static mpeg_t * | |
87 mpeg_open(const char *filename) | |
88 { | |
89 mpeg_t *res = malloc(sizeof(mpeg_t)); | |
90 int err = res == NULL; | |
91 if (!err) { | |
92 int fd; | |
93 res->pts = 0; | |
94 res->aid = -1; | |
95 res->packet = NULL; | |
96 res->packet_size = 0; | |
97 res->packet_reserve = 0; | |
98 fd = open(filename, O_RDONLY); | |
99 err = fd < 0; | |
100 if (!err) { | |
101 res->stream = new_stream(fd, STREAMTYPE_FILE); | |
102 err = res->stream == NULL; | |
103 if (err) | |
104 close(fd); | |
105 } | |
106 if (err) | |
107 free(res); | |
108 } | |
109 return err ? NULL : res; | |
110 } | |
111 | |
112 static void | |
113 mpeg_free(mpeg_t *mpeg) | |
114 { | |
115 int fd; | |
116 if (mpeg->packet) | |
117 free(mpeg->packet); | |
118 fd = mpeg->stream->fd; | |
119 free_stream(mpeg->stream); | |
120 close(fd); | |
121 free(mpeg); | |
122 } | |
123 | |
124 static int | |
125 mpeg_eof(mpeg_t *mpeg) | |
126 { | |
127 return stream_eof(mpeg->stream); | |
128 } | |
129 | |
130 static off_t | |
131 mpeg_tell(mpeg_t *mpeg) | |
132 { | |
133 return stream_tell(mpeg->stream); | |
134 } | |
135 | |
136 static int | |
137 mpeg_run(mpeg_t *mpeg) | |
138 { | |
139 unsigned int len, idx, version; | |
140 int c; | |
141 /* Goto start of a packet, it starts with 0x000001?? */ | |
142 const unsigned char wanted[] = { 0, 0, 1 }; | |
143 unsigned char buf[5]; | |
144 | |
145 mpeg->aid = -1; | |
146 mpeg->packet_size = 0; | |
147 if (stream_read(mpeg->stream, buf, 4) != 4) | |
148 return -1; | |
149 while (memcmp(buf, wanted, sizeof(wanted)) != 0) { | |
150 c = stream_read_char(mpeg->stream); | |
151 if (c < 0) | |
152 return -1; | |
153 memmove(buf, buf + 1, 3); | |
154 buf[3] = c; | |
155 } | |
156 switch (buf[3]) { | |
157 case 0xb9: /* System End Code */ | |
158 break; | |
159 case 0xba: /* Packet start code */ | |
160 c = stream_read_char(mpeg->stream); | |
161 if (c < 0) | |
162 return -1; | |
163 if ((c & 0xc0) == 0x40) | |
164 version = 4; | |
165 else if ((c & 0xf0) == 0x20) | |
166 version = 2; | |
167 else { | |
168 fprintf(stderr, "Unsupported MPEG version: 0x%02x", c); | |
169 return -1; | |
170 } | |
171 if (version == 4) { | |
172 if (!stream_skip(mpeg->stream, 9)) | |
173 return -1; | |
174 } | |
175 else if (version == 2) { | |
176 if (!stream_skip(mpeg->stream, 7)) | |
177 return -1; | |
178 } | |
179 else | |
180 abort(); | |
181 break; | |
182 case 0xbd: /* packet */ | |
183 if (stream_read(mpeg->stream, buf, 2) != 2) | |
184 return -1; | |
185 len = buf[0] << 8 | buf[1]; | |
186 idx = mpeg_tell(mpeg); | |
187 c = stream_read_char(mpeg->stream); | |
188 if (c < 0) | |
189 return -1; | |
190 if ((c & 0xC0) == 0x40) { /* skip STD scale & size */ | |
191 if (stream_read_char(mpeg->stream) < 0) | |
192 return -1; | |
193 c = stream_read_char(mpeg->stream); | |
194 if (c < 0) | |
195 return -1; | |
196 } | |
197 if ((c & 0xf0) == 0x20) { /* System-1 stream timestamp */ | |
198 /* Do we need this? */ | |
199 abort(); | |
200 } | |
201 else if ((c & 0xf0) == 0x30) { | |
202 /* Do we need this? */ | |
203 abort(); | |
204 } | |
205 else if ((c & 0xc0) == 0x80) { /* System-2 (.VOB) stream */ | |
206 unsigned int pts_flags, hdrlen, dataidx; | |
207 c = stream_read_char(mpeg->stream); | |
208 if (c < 0) | |
209 return -1; | |
210 pts_flags = c; | |
211 c = stream_read_char(mpeg->stream); | |
212 if (c < 0) | |
213 return -1; | |
214 hdrlen = c; | |
215 dataidx = mpeg_tell(mpeg) + hdrlen; | |
216 if (dataidx > idx + len) { | |
217 fprintf(stderr, "Invalid header length: %d (total length: %d, idx: %d, dataidx: %d)\n", | |
218 hdrlen, len, idx, dataidx); | |
219 return -1; | |
220 } | |
221 if ((pts_flags & 0xc0) == 0x80) { | |
222 if (stream_read(mpeg->stream, buf, 5) != 5) | |
223 return -1; | |
224 if (!(((buf[0] & 0xf0) == 0x20) && (buf[0] & 1) && (buf[2] & 1) && (buf[4] & 1))) { | |
225 fprintf(stderr, "vobsub PTS error: 0x%02x %02x%02x %02x%02x \n", | |
226 buf[0], buf[1], buf[2], buf[3], buf[4]); | |
227 mpeg->pts = 0; | |
228 } | |
229 else | |
230 mpeg->pts = ((buf[0] & 0x0e) << 29 | buf[1] << 22 | (buf[2] & 0xfe) << 14 | |
231 | buf[3] << 7 | (buf[4] >> 1)) / 900; | |
232 } | |
233 else /* if ((pts_flags & 0xc0) == 0xc0) */ { | |
234 /* what's this? */ | |
235 /* abort(); */ | |
236 } | |
237 stream_seek(mpeg->stream, dataidx); | |
238 mpeg->aid = stream_read_char(mpeg->stream); | |
239 if (mpeg->aid < 0) { | |
240 fprintf(stderr, "Bogus aid %d\n", mpeg->aid); | |
241 return -1; | |
242 } | |
243 mpeg->packet_size = len - ((unsigned int) mpeg_tell(mpeg) - idx); | |
244 if (mpeg->packet_reserve < mpeg->packet_size) { | |
245 if (mpeg->packet) | |
246 free(mpeg->packet); | |
247 mpeg->packet = malloc(mpeg->packet_size); | |
248 if (mpeg->packet) | |
249 mpeg->packet_reserve = mpeg->packet_size; | |
250 } | |
251 if (mpeg->packet == NULL) { | |
252 perror("malloc failure"); | |
253 mpeg->packet_reserve = 0; | |
254 mpeg->packet_size = 0; | |
255 return -1; | |
256 } | |
257 if (stream_read(mpeg->stream, mpeg->packet, mpeg->packet_size) != mpeg->packet_size) { | |
258 perror("stream_read failure"); | |
259 mpeg->packet_size = 0; | |
260 return -1; | |
261 } | |
262 idx = len; | |
263 } | |
264 break; | |
265 case 0xbe: /* Padding */ | |
266 if (stream_read(mpeg->stream, buf, 2) != 2) | |
267 return -1; | |
268 len = buf[0] << 8 | buf[1]; | |
269 if (len > 0 && !stream_skip(mpeg->stream, len)) | |
270 return -1; | |
271 break; | |
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 | 287 } |
288 return 0; | |
289 } | |
290 | |
291 /********************************************************************** | |
292 * Packet queue | |
293 **********************************************************************/ | |
294 | |
295 typedef struct { | |
296 unsigned int pts100; | |
297 off_t filepos; | |
298 unsigned int size; | |
299 unsigned char *data; | |
300 } packet_t; | |
301 | |
302 typedef struct { | |
303 char *id; | |
304 packet_t *packets; | |
305 unsigned int packets_reserve; | |
306 unsigned int packets_size; | |
307 unsigned int current_index; | |
308 } packet_queue_t; | |
309 | |
310 static void | |
311 packet_construct(packet_t *pkt) | |
312 { | |
313 pkt->pts100 = 0; | |
314 pkt->filepos = 0; | |
315 pkt->size = 0; | |
316 pkt->data = NULL; | |
317 } | |
318 | |
319 static void | |
320 packet_destroy(packet_t *pkt) | |
321 { | |
322 if (pkt->data) | |
323 free(pkt->data); | |
324 } | |
325 | |
326 static void | |
327 packet_queue_construct(packet_queue_t *queue) | |
328 { | |
329 queue->id = NULL; | |
330 queue->packets = NULL; | |
331 queue->packets_reserve = 0; | |
332 queue->packets_size = 0; | |
333 queue->current_index = 0; | |
334 } | |
335 | |
336 static void | |
337 packet_queue_destroy(packet_queue_t *queue) | |
338 { | |
339 if (queue->packets) { | |
340 while (queue->packets_size--) | |
341 packet_destroy(queue->packets + queue->packets_size); | |
342 free(queue->packets); | |
343 } | |
344 return; | |
345 } | |
346 | |
347 /* Make sure there is enough room for needed_size packets in the | |
348 packet queue. */ | |
349 static int | |
350 packet_queue_ensure(packet_queue_t *queue, unsigned int needed_size) | |
351 { | |
352 if (queue->packets_reserve < needed_size) { | |
353 if (queue->packets) { | |
354 packet_t *tmp = realloc(queue->packets, 2 * queue->packets_reserve * sizeof(packet_t)); | |
355 if (tmp == NULL) { | |
356 perror("realloc failure"); | |
357 return -1; | |
358 } | |
359 queue->packets = tmp; | |
360 queue->packets_reserve *= 2; | |
361 } | |
362 else { | |
363 queue->packets = malloc(sizeof(packet_t)); | |
364 if (queue->packets == NULL) { | |
365 perror("malloc failure"); | |
366 return -1; | |
367 } | |
368 queue->packets_reserve = 1; | |
369 } | |
370 } | |
371 return 0; | |
372 } | |
373 | |
374 /* add one more packet */ | |
375 static int | |
376 packet_queue_grow(packet_queue_t *queue) | |
377 { | |
378 if (packet_queue_ensure(queue, queue->packets_size + 1) < 0) | |
379 return -1; | |
380 packet_construct(queue->packets + queue->packets_size); | |
381 ++queue->packets_size; | |
382 return 0; | |
383 } | |
384 | |
385 /* insert a new packet, duplicating pts from the current one */ | |
386 static int | |
387 packet_queue_insert(packet_queue_t *queue) | |
388 { | |
389 packet_t *pkts; | |
390 if (packet_queue_ensure(queue, queue->packets_size + 1) < 0) | |
391 return -1; | |
392 /* XXX packet_size does not reflect the real thing here, it will be updated a bit later */ | |
393 memmove(queue->packets + queue->current_index + 2, | |
394 queue->packets + queue->current_index + 1, | |
4085 | 395 sizeof(packet_t) * (queue->packets_size - queue->current_index - 1)); |
4080 | 396 pkts = queue->packets + queue->current_index; |
397 ++queue->packets_size; | |
398 ++queue->current_index; | |
399 packet_construct(pkts + 1); | |
400 pkts[1].pts100 = pkts[0].pts100; | |
401 pkts[1].filepos = pkts[0].filepos; | |
402 return 0; | |
403 } | |
404 | |
405 /********************************************************************** | |
406 * Vosub | |
407 **********************************************************************/ | |
408 | |
409 typedef struct { | |
410 void *spudec; | |
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 | 417 unsigned int origin_x, origin_y; |
4080 | 418 /* index */ |
419 packet_queue_t *spu_streams; | |
420 unsigned int spu_streams_size; | |
421 unsigned int spu_streams_current; | |
422 } vobsub_t; | |
423 | |
4085 | 424 /* Make sure that the spu stream idx exists. */ |
4080 | 425 static int |
4085 | 426 vobsub_ensure_spu_stream(vobsub_t *vob, unsigned int index) |
4080 | 427 { |
428 if (index >= vob->spu_streams_size) { | |
429 /* This is a new stream */ | |
430 if (vob->spu_streams) { | |
431 packet_queue_t *tmp = realloc(vob->spu_streams, (index + 1) * sizeof(packet_queue_t)); | |
432 if (tmp == NULL) { | |
4085 | 433 perror("vobsub_ensure_spu_stream: realloc failure"); |
4080 | 434 return -1; |
435 } | |
436 vob->spu_streams = tmp; | |
437 } | |
438 else { | |
439 vob->spu_streams = malloc((index + 1) * sizeof(packet_queue_t)); | |
440 if (vob->spu_streams == NULL) { | |
4085 | 441 perror("vobsub_ensure_spu_stream: malloc failure"); |
4080 | 442 return -1; |
443 } | |
444 } | |
445 while (vob->spu_streams_size <= index) { | |
446 packet_queue_construct(vob->spu_streams + vob->spu_streams_size); | |
447 ++vob->spu_streams_size; | |
448 } | |
449 } | |
4085 | 450 return 0; |
451 } | |
452 | |
453 static int | |
454 vobsub_add_id(vobsub_t *vob, const char *id, size_t idlen, const unsigned int index) | |
455 { | |
456 if (vobsub_ensure_spu_stream(vob, index) < 0) | |
457 return -1; | |
4080 | 458 if (id && idlen) { |
459 if (vob->spu_streams[index].id) | |
460 free(vob->spu_streams[index].id); | |
461 vob->spu_streams[index].id = malloc(idlen + 1); | |
462 if (vob->spu_streams[index].id == NULL) { | |
463 perror("vobsub_add_id: malloc failure"); | |
464 return -1; | |
465 } | |
466 vob->spu_streams[index].id[idlen] = 0; | |
467 memcpy(vob->spu_streams[index].id, id, idlen); | |
468 } | |
469 vob->spu_streams_current = index; | |
470 if (verbose) | |
471 fprintf(stderr, "[vobsub] subtitle (vobsubid): %d language %s\n", | |
472 index, vob->spu_streams[index].id); | |
473 return 0; | |
474 } | |
475 | |
476 static int | |
477 vobsub_add_timestamp(vobsub_t *vob, off_t filepos, unsigned int ms) | |
478 { | |
479 packet_queue_t *queue; | |
480 packet_t *pkt; | |
481 if (vob->spu_streams == 0) { | |
482 fprintf(stderr, "[vobsub] warning, binning some index entries. Check your index file\n"); | |
483 return -1; | |
484 } | |
485 queue = vob->spu_streams + vob->spu_streams_current; | |
486 if (packet_queue_grow(queue) >= 0) { | |
487 pkt = queue->packets + (queue->packets_size - 1); | |
488 pkt->filepos = filepos; | |
5563 | 489 pkt->pts100 = ms * 90; |
4080 | 490 return 0; |
491 } | |
492 return -1; | |
493 } | |
494 | |
495 static int | |
496 vobsub_parse_id(vobsub_t *vob, const char *line) | |
497 { | |
498 // id: xx, index: n | |
499 size_t idlen; | |
500 const char *p, *q; | |
501 p = line; | |
502 while (isspace(*p)) | |
503 ++p; | |
504 q = p; | |
505 while (isalpha(*q)) | |
506 ++q; | |
507 idlen = q - p; | |
508 if (idlen == 0) | |
509 return -1; | |
510 ++q; | |
511 while (isspace(*q)) | |
512 ++q; | |
513 if (strncmp("index:", q, 6)) | |
514 return -1; | |
515 q += 6; | |
516 while (isspace(*q)) | |
517 ++q; | |
518 if (!isdigit(*q)) | |
519 return -1; | |
520 return vobsub_add_id(vob, p, idlen, atoi(q)); | |
521 } | |
522 | |
523 static int | |
524 vobsub_parse_timestamp(vobsub_t *vob, const char *line) | |
525 { | |
526 // timestamp: HH:MM:SS.mmm, filepos: 0nnnnnnnnn | |
527 const char *p; | |
528 int h, m, s, ms; | |
529 off_t filepos; | |
530 while (isspace(*line)) | |
531 ++line; | |
532 p = line; | |
533 while (isdigit(*p)) | |
534 ++p; | |
535 if (p - line != 2) | |
536 return -1; | |
537 h = atoi(line); | |
538 if (*p != ':') | |
539 return -1; | |
540 line = ++p; | |
541 while (isdigit(*p)) | |
542 ++p; | |
543 if (p - line != 2) | |
544 return -1; | |
545 m = atoi(line); | |
546 if (*p != ':') | |
547 return -1; | |
548 line = ++p; | |
549 while (isdigit(*p)) | |
550 ++p; | |
551 if (p - line != 2) | |
552 return -1; | |
553 s = atoi(line); | |
554 if (*p != ':') | |
555 return -1; | |
556 line = ++p; | |
557 while (isdigit(*p)) | |
558 ++p; | |
559 if (p - line != 3) | |
560 return -1; | |
561 ms = atoi(line); | |
562 if (*p != ',') | |
563 return -1; | |
564 line = p + 1; | |
565 while (isspace(*line)) | |
566 ++line; | |
567 if (strncmp("filepos:", line, 8)) | |
568 return -1; | |
569 line += 8; | |
570 while (isspace(*line)) | |
571 ++line; | |
572 if (! isxdigit(*line)) | |
573 return -1; | |
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 | 576 } |
577 | |
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 | 596 vobsub_parse_origin(vobsub_t *vob, const char *line) |
597 { | |
598 // org: X,Y | |
599 char *p; | |
600 while (isspace(*line)) | |
601 ++line; | |
602 if (!isdigit(*line)) | |
603 return -1; | |
604 vob->origin_x = strtoul(line, &p, 10); | |
605 if (*p != ',') | |
606 return -1; | |
607 ++p; | |
608 vob->origin_y = strtoul(p, NULL, 10); | |
609 return 0; | |
610 } | |
611 | |
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 | 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 | 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 | 723 vobsub_parse_one_line(vobsub_t *vob, FILE *fd) |
724 { | |
725 ssize_t line_size; | |
726 int res = -1; | |
727 do { | |
728 int line_reserve = 0; | |
729 char *line = NULL; | |
730 line_size = getline(&line, &line_reserve, fd); | |
731 if (line_size < 0) { | |
732 if (line) | |
733 free(line); | |
734 break; | |
735 } | |
736 if (*line == 0 || *line == '\r' || *line == '\n' || *line == '#') | |
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 | 742 else if (strncmp("id:", line, 3) == 0) |
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 | 748 else if (strncmp("org:", line, 4) == 0) |
749 res = vobsub_parse_origin(vob, line + 4); | |
4080 | 750 else if (strncmp("timestamp:", line, 10) == 0) |
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 | 755 else { |
756 if (verbose) | |
757 fprintf(stderr, "vobsub: ignoring %s", line); | |
758 continue; | |
759 } | |
760 if (res < 0) | |
761 fprintf(stderr, "ERROR in %s", line); | |
762 break; | |
763 } while (1); | |
764 return res; | |
765 } | |
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 | 828 void * |
4787 | 829 vobsub_open(const char *const name, const int force) |
4080 | 830 { |
831 vobsub_t *vob = malloc(sizeof(vobsub_t)); | |
832 if (vob) { | |
833 char *buf; | |
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 | 837 vob->spu_streams = NULL; |
838 vob->spu_streams_size = 0; | |
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 | 841 buf = malloc((strlen(name) + 5) * sizeof(char)); |
842 if (buf) { | |
843 FILE *fd; | |
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 | 846 strcpy(buf, name); |
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 | 849 /* read in the index */ |
850 strcpy(buf, name); | |
851 strcat(buf, ".idx"); | |
852 fd = fopen(buf, "rb"); | |
4787 | 853 if (fd == NULL) { |
854 if(force) | |
855 perror("VobSub: Can't open IDX file"); | |
856 else | |
857 return NULL; | |
858 } else { | |
4080 | 859 while (vobsub_parse_one_line(vob, fd) >= 0) |
860 /* NOOP */ ; | |
861 fclose(fd); | |
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 | 868 |
869 /* read the indexed mpeg_stream */ | |
870 strcpy(buf, name); | |
871 strcat(buf, ".sub"); | |
872 mpg = mpeg_open(buf); | |
4787 | 873 if (mpg == NULL) { |
874 if(force) | |
875 perror("VobSub: Can't open SUB file"); | |
876 } else { | |
4080 | 877 long last_pts_diff = 0; |
878 while (!mpeg_eof(mpg)) { | |
879 off_t pos = mpeg_tell(mpg); | |
880 if (mpeg_run(mpg) < 0) { | |
881 if (!mpeg_eof(mpg)) | |
882 perror("mpeg_run error"); | |
883 break; | |
884 } | |
885 if (mpg->packet_size) { | |
886 if ((mpg->aid & 0xe0) == 0x20) { | |
887 unsigned int sid = mpg->aid & 0x1f; | |
4085 | 888 if (vobsub_ensure_spu_stream(vob, sid) >= 0) { |
4080 | 889 packet_queue_t *queue = vob->spu_streams + sid; |
890 /* get the packet to fill */ | |
4085 | 891 if (queue->packets_size == 0 && packet_queue_grow(queue) < 0) |
892 abort(); | |
4080 | 893 while (queue->current_index + 1 < queue->packets_size |
894 && queue->packets[queue->current_index + 1].filepos <= pos) | |
895 ++queue->current_index; | |
896 if (queue->current_index < queue->packets_size) { | |
897 packet_t *pkt; | |
898 if (queue->packets[queue->current_index].data) { | |
899 /* insert a new packet and fix the PTS ! */ | |
900 packet_queue_insert(queue); | |
901 queue->packets[queue->current_index].pts100 = | |
902 mpg->pts + last_pts_diff; | |
903 } | |
904 pkt = queue->packets + queue->current_index; | |
905 last_pts_diff = pkt->pts100 - mpg->pts; | |
906 /* FIXME: should not use mpg_sub internal informations, make a copy */ | |
907 pkt->data = mpg->packet; | |
908 pkt->size = mpg->packet_size; | |
909 mpg->packet = NULL; | |
910 mpg->packet_reserve = 0; | |
911 mpg->packet_size = 0; | |
912 } | |
913 } | |
914 else | |
915 fprintf(stderr, "don't know what to do with subtitle #%u\n", sid); | |
916 } | |
917 } | |
918 } | |
919 vob->spu_streams_current = vob->spu_streams_size; | |
920 while (vob->spu_streams_current-- > 0) | |
921 vob->spu_streams[vob->spu_streams_current].current_index = 0; | |
922 mpeg_free(mpg); | |
923 } | |
924 free(buf); | |
925 } | |
926 } | |
927 return vob; | |
928 } | |
929 | |
930 void | |
931 vobsub_close(void *this) | |
932 { | |
933 vobsub_t *vob = (vobsub_t *)this; | |
934 if (vob->spudec) | |
935 spudec_free(vob->spudec); | |
936 if (vob->spu_streams) { | |
937 while (vob->spu_streams_size--) | |
938 packet_queue_destroy(vob->spu_streams + vob->spu_streams_size); | |
939 free(vob->spu_streams); | |
940 } | |
941 free(vob); | |
942 } | |
943 | |
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)) | |
945 { | |
946 vobsub_t *vob = (vobsub_t *)this; | |
5563 | 947 if (vob->spudec) { |
4080 | 948 spudec_draw_scaled(vob->spudec, dxs, dys, draw_alpha); |
5563 | 949 } |
4080 | 950 } |
951 | |
952 void | |
953 vobsub_process(void *vobhandle, float pts) | |
954 { | |
955 vobsub_t *vob = (vobsub_t *)vobhandle; | |
5563 | 956 unsigned int pts100 = 90000 * pts; |
4114 | 957 if (vob->spudec) { |
4080 | 958 spudec_heartbeat(vob->spudec, pts100); |
4114 | 959 if (vob->spu_streams && 0 <= vobsub_id && (unsigned) vobsub_id < vob->spu_streams_size) { |
960 packet_queue_t *queue = vob->spu_streams + vobsub_id; | |
961 while (queue->current_index < queue->packets_size) { | |
962 packet_t *pkt = queue->packets + queue->current_index; | |
963 if (pkt->pts100 <= pts100) { | |
964 spudec_assemble(vob->spudec, pkt->data, pkt->size, pkt->pts100); | |
965 ++queue->current_index; | |
966 } | |
967 else | |
968 break; | |
4080 | 969 } |
970 } | |
971 } | |
972 } | |
973 | |
974 void | |
975 vobsub_reset(void *vobhandle) | |
976 { | |
977 vobsub_t *vob = (vobsub_t *)vobhandle; | |
978 if (vob->spu_streams) { | |
979 unsigned int n = vob->spu_streams_size; | |
980 while (n-- > 0) | |
981 vob->spu_streams[n].current_index = 0; | |
982 } | |
983 if (vob->spudec) | |
984 spudec_reset(vob->spudec); | |
985 } |