2 * Some code freely inspired from VobSub <URL:http://vobsub.edensrising.com>,
3 * with kind permission from Gabest <gabest@freemail.hu>
5 * This file is part of MPlayer.
7 * MPlayer is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * MPlayer is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
32 #include <sys/types.h>
40 #include "unrar_exec.h"
41 #include "libavutil/common.h"
44 // Record the original -vobsubid set by commandline, since vobsub_id will be
45 // overridden if slang match any of vobsub streams.
46 static int vobsubid
= -2;
48 /**********************************************************************
50 * The RAR file must have the same basename as the file to open
51 **********************************************************************/
52 #ifdef CONFIG_UNRAR_EXEC
60 static rar_stream_t
*rar_open(const char *const filename
,
61 const char *const mode
)
64 /* unrar_exec can only read */
65 if (strcmp("r", mode
) && strcmp("rb", mode
)) {
69 stream
= malloc(sizeof(rar_stream_t
));
72 /* first try normal access */
73 stream
->file
= fopen(filename
, mode
);
74 if (stream
->file
== NULL
) {
78 /* Guess the RAR archive filename */
80 p
= strrchr(filename
, '.');
82 ptrdiff_t l
= p
- filename
;
83 rar_filename
= malloc(l
+ 5);
84 if (rar_filename
== NULL
) {
88 strncpy(rar_filename
, filename
, l
);
89 strcpy(rar_filename
+ l
, ".rar");
91 rar_filename
= malloc(strlen(filename
) + 5);
92 if (rar_filename
== NULL
) {
96 strcpy(rar_filename
, filename
);
97 strcat(rar_filename
, ".rar");
99 /* get rid of the path if there is any */
100 p
= mp_basename(filename
);
101 rc
= unrar_exec_get(&stream
->data
, &stream
->size
, p
, rar_filename
);
103 /* There is no matching filename in the archive. However, sometimes
104 * the files we are looking for have been given arbitrary names in the archive.
105 * Let's look for a file with an exact match in the extension only. */
106 int i
, num_files
, name_len
;
107 ArchiveList_struct
*list
, *lp
;
108 num_files
= unrar_exec_list(rar_filename
, &list
);
111 demanded_ext
= strrchr (p
, '.');
113 int demanded_ext_len
= strlen (demanded_ext
);
114 for (i
= 0, lp
= list
; i
< num_files
; i
++, lp
= lp
->next
) {
115 name_len
= strlen (lp
->item
.Name
);
116 if (name_len
>= demanded_ext_len
&& !strcasecmp (lp
->item
.Name
+ name_len
- demanded_ext_len
, demanded_ext
)) {
117 rc
= unrar_exec_get(&stream
->data
, &stream
->size
,
118 lp
->item
.Name
, rar_filename
);
124 unrar_exec_freelist(list
);
139 static int rar_close(rar_stream_t
*stream
)
142 return fclose(stream
->file
);
147 static int rar_eof(rar_stream_t
*stream
)
150 return feof(stream
->file
);
151 return stream
->pos
>= stream
->size
;
154 static long rar_tell(rar_stream_t
*stream
)
157 return ftell(stream
->file
);
161 static int rar_seek(rar_stream_t
*stream
, long offset
, int whence
)
164 return fseek(stream
->file
, offset
, whence
);
171 stream
->pos
= offset
;
174 if (offset
< 0 && stream
->pos
< (unsigned long) -offset
) {
178 stream
->pos
+= offset
;
181 if (offset
< 0 && stream
->size
< (unsigned long) -offset
) {
185 stream
->pos
= stream
->size
+ offset
;
194 static int rar_getc(rar_stream_t
*stream
)
197 return getc(stream
->file
);
200 return stream
->data
[stream
->pos
++];
203 static size_t rar_read(void *ptr
, size_t size
, size_t nmemb
,
204 rar_stream_t
*stream
)
207 unsigned long remain
;
209 return fread(ptr
, size
, nmemb
, stream
->file
);
213 remain
= stream
->size
- stream
->pos
;
215 res
= remain
/ size
* size
;
216 memcpy(ptr
, stream
->data
+ stream
->pos
, res
);
223 typedef FILE rar_stream_t
;
224 #define rar_open fopen
225 #define rar_close fclose
227 #define rar_tell ftell
228 #define rar_seek fseek
229 #define rar_getc getc
230 #define rar_read fread
233 /**********************************************************************/
235 static ssize_t
vobsub_getline(char **lineptr
, size_t *n
, rar_stream_t
*stream
)
239 if (*lineptr
== NULL
) {
240 *lineptr
= malloc(4096);
243 } else if (*n
== 0) {
244 char *tmp
= realloc(*lineptr
, 4096);
250 if (*lineptr
== NULL
|| *n
== 0)
253 for (c
= rar_getc(stream
); c
!= EOF
; c
= rar_getc(stream
)) {
255 char *tmp
= realloc(*lineptr
, *n
* 2);
261 (*lineptr
)[res
++] = c
;
273 /**********************************************************************
275 **********************************************************************/
278 rar_stream_t
*stream
;
281 unsigned char *packet
;
282 unsigned int packet_reserve
;
283 unsigned int packet_size
;
284 int padding_was_here
;
288 static mpeg_t
*mpeg_open(const char *filename
)
290 mpeg_t
*res
= malloc(sizeof(mpeg_t
));
291 int err
= res
== NULL
;
296 res
->packet_size
= 0;
297 res
->packet_reserve
= 0;
298 res
->padding_was_here
= 1;
300 res
->stream
= rar_open(filename
, "rb");
301 err
= res
->stream
== NULL
;
303 perror("fopen Vobsub file failed");
307 return err
? NULL
: res
;
310 static void mpeg_free(mpeg_t
*mpeg
)
314 rar_close(mpeg
->stream
);
318 static int mpeg_eof(mpeg_t
*mpeg
)
320 return rar_eof(mpeg
->stream
);
323 static off_t
mpeg_tell(mpeg_t
*mpeg
)
325 return rar_tell(mpeg
->stream
);
328 static int mpeg_run(mpeg_t
*mpeg
)
330 unsigned int len
, idx
, version
;
332 /* Goto start of a packet, it starts with 0x000001?? */
333 const unsigned char wanted
[] = { 0, 0, 1 };
334 unsigned char buf
[5];
337 mpeg
->packet_size
= 0;
338 if (rar_read(buf
, 4, 1, mpeg
->stream
) != 1)
340 while (memcmp(buf
, wanted
, sizeof(wanted
)) != 0) {
341 c
= rar_getc(mpeg
->stream
);
344 memmove(buf
, buf
+ 1, 3);
348 case 0xb9: /* System End Code */
350 case 0xba: /* Packet start code */
351 c
= rar_getc(mpeg
->stream
);
354 if ((c
& 0xc0) == 0x40)
356 else if ((c
& 0xf0) == 0x20)
359 mp_msg(MSGT_VOBSUB
, MSGL_ERR
, "VobSub: Unsupported MPEG version: 0x%02x\n", c
);
363 if (rar_seek(mpeg
->stream
, 9, SEEK_CUR
))
365 } else if (version
== 2) {
366 if (rar_seek(mpeg
->stream
, 7, SEEK_CUR
))
370 if (!mpeg
->padding_was_here
)
373 case 0xbd: /* packet */
374 if (rar_read(buf
, 2, 1, mpeg
->stream
) != 1)
376 mpeg
->padding_was_here
= 0;
377 len
= buf
[0] << 8 | buf
[1];
378 idx
= mpeg_tell(mpeg
);
379 c
= rar_getc(mpeg
->stream
);
382 if ((c
& 0xC0) == 0x40) { /* skip STD scale & size */
383 if (rar_getc(mpeg
->stream
) < 0)
385 c
= rar_getc(mpeg
->stream
);
389 if ((c
& 0xf0) == 0x20) { /* System-1 stream timestamp */
390 /* Do we need this? */
392 } else if ((c
& 0xf0) == 0x30) {
393 /* Do we need this? */
395 } else if ((c
& 0xc0) == 0x80) { /* System-2 (.VOB) stream */
396 unsigned int pts_flags
, hdrlen
, dataidx
;
397 c
= rar_getc(mpeg
->stream
);
401 c
= rar_getc(mpeg
->stream
);
405 dataidx
= mpeg_tell(mpeg
) + hdrlen
;
406 if (dataidx
> idx
+ len
) {
407 mp_msg(MSGT_VOBSUB
, MSGL_ERR
, "Invalid header length: %d (total length: %d, idx: %d, dataidx: %d)\n",
408 hdrlen
, len
, idx
, dataidx
);
411 if ((pts_flags
& 0xc0) == 0x80) {
412 if (rar_read(buf
, 5, 1, mpeg
->stream
) != 1)
414 if (!(((buf
[0] & 0xf0) == 0x20) && (buf
[0] & 1) && (buf
[2] & 1) && (buf
[4] & 1))) {
415 mp_msg(MSGT_VOBSUB
, MSGL_ERR
, "vobsub PTS error: 0x%02x %02x%02x %02x%02x \n",
416 buf
[0], buf
[1], buf
[2], buf
[3], buf
[4]);
419 mpeg
->pts
= ((buf
[0] & 0x0e) << 29 | buf
[1] << 22 | (buf
[2] & 0xfe) << 14
420 | buf
[3] << 7 | (buf
[4] >> 1));
421 } else /* if ((pts_flags & 0xc0) == 0xc0) */ {
425 rar_seek(mpeg
->stream
, dataidx
, SEEK_SET
);
426 mpeg
->aid
= rar_getc(mpeg
->stream
);
428 mp_msg(MSGT_VOBSUB
, MSGL_ERR
, "Bogus aid %d\n", mpeg
->aid
);
431 mpeg
->packet_size
= len
- ((unsigned int) mpeg_tell(mpeg
) - idx
);
432 if (mpeg
->packet_reserve
< mpeg
->packet_size
) {
434 mpeg
->packet
= malloc(mpeg
->packet_size
);
436 mpeg
->packet_reserve
= mpeg
->packet_size
;
438 if (mpeg
->packet
== NULL
) {
439 mp_msg(MSGT_VOBSUB
, MSGL_FATAL
, "malloc failure");
440 mpeg
->packet_reserve
= 0;
441 mpeg
->packet_size
= 0;
444 if (rar_read(mpeg
->packet
, mpeg
->packet_size
, 1, mpeg
->stream
) != 1) {
445 mp_msg(MSGT_VOBSUB
, MSGL_ERR
, "fread failure");
446 mpeg
->packet_size
= 0;
452 case 0xbe: /* Padding */
453 if (rar_read(buf
, 2, 1, mpeg
->stream
) != 1)
455 len
= buf
[0] << 8 | buf
[1];
456 if (len
> 0 && rar_seek(mpeg
->stream
, len
, SEEK_CUR
))
458 mpeg
->padding_was_here
= 1;
461 if (0xc0 <= buf
[3] && buf
[3] < 0xf0) {
462 /* MPEG audio or video */
463 if (rar_read(buf
, 2, 1, mpeg
->stream
) != 1)
465 len
= buf
[0] << 8 | buf
[1];
466 if (len
> 0 && rar_seek(mpeg
->stream
, len
, SEEK_CUR
))
469 mp_msg(MSGT_VOBSUB
, MSGL_ERR
, "unknown header 0x%02X%02X%02X%02X\n",
470 buf
[0], buf
[1], buf
[2], buf
[3]);
477 /**********************************************************************
479 **********************************************************************/
491 unsigned int packets_reserve
;
492 unsigned int packets_size
;
493 unsigned int current_index
;
496 static void packet_construct(packet_t
*pkt
)
504 static void packet_destroy(packet_t
*pkt
)
509 static void packet_queue_construct(packet_queue_t
*queue
)
512 queue
->packets
= NULL
;
513 queue
->packets_reserve
= 0;
514 queue
->packets_size
= 0;
515 queue
->current_index
= 0;
518 static void packet_queue_destroy(packet_queue_t
*queue
)
520 if (queue
->packets
) {
521 while (queue
->packets_size
--)
522 packet_destroy(queue
->packets
+ queue
->packets_size
);
523 free(queue
->packets
);
528 /* Make sure there is enough room for needed_size packets in the
530 static int packet_queue_ensure(packet_queue_t
*queue
, unsigned int needed_size
)
532 if (queue
->packets_reserve
< needed_size
) {
533 if (queue
->packets
) {
534 packet_t
*tmp
= realloc(queue
->packets
, 2 * queue
->packets_reserve
* sizeof(packet_t
));
536 mp_msg(MSGT_VOBSUB
, MSGL_FATAL
, "realloc failure");
539 queue
->packets
= tmp
;
540 queue
->packets_reserve
*= 2;
542 queue
->packets
= malloc(sizeof(packet_t
));
543 if (queue
->packets
== NULL
) {
544 mp_msg(MSGT_VOBSUB
, MSGL_FATAL
, "malloc failure");
547 queue
->packets_reserve
= 1;
553 /* add one more packet */
554 static int packet_queue_grow(packet_queue_t
*queue
)
556 if (packet_queue_ensure(queue
, queue
->packets_size
+ 1) < 0)
558 packet_construct(queue
->packets
+ queue
->packets_size
);
559 ++queue
->packets_size
;
563 /* insert a new packet, duplicating pts from the current one */
564 static int packet_queue_insert(packet_queue_t
*queue
)
567 if (packet_queue_ensure(queue
, queue
->packets_size
+ 1) < 0)
569 /* XXX packet_size does not reflect the real thing here, it will be updated a bit later */
570 memmove(queue
->packets
+ queue
->current_index
+ 2,
571 queue
->packets
+ queue
->current_index
+ 1,
572 sizeof(packet_t
) * (queue
->packets_size
- queue
->current_index
- 1));
573 pkts
= queue
->packets
+ queue
->current_index
;
574 ++queue
->packets_size
;
575 ++queue
->current_index
;
576 packet_construct(pkts
+ 1);
577 pkts
[1].pts100
= pkts
[0].pts100
;
578 pkts
[1].filepos
= pkts
[0].filepos
;
582 /**********************************************************************
584 **********************************************************************/
587 unsigned int palette
[16];
589 unsigned int have_palette
;
590 unsigned int orig_frame_width
, orig_frame_height
;
591 unsigned int origin_x
, origin_y
;
593 packet_queue_t
*spu_streams
;
594 unsigned int spu_streams_size
;
595 unsigned int spu_streams_current
;
596 unsigned int spu_valid_streams_size
;
599 /* Make sure that the spu stream idx exists. */
600 static int vobsub_ensure_spu_stream(vobsub_t
*vob
, unsigned int index
)
602 if (index
>= vob
->spu_streams_size
) {
603 /* This is a new stream */
604 if (vob
->spu_streams
) {
605 packet_queue_t
*tmp
= realloc(vob
->spu_streams
, (index
+ 1) * sizeof(packet_queue_t
));
607 mp_msg(MSGT_VOBSUB
, MSGL_ERR
, "vobsub_ensure_spu_stream: realloc failure");
610 vob
->spu_streams
= tmp
;
612 vob
->spu_streams
= malloc((index
+ 1) * sizeof(packet_queue_t
));
613 if (vob
->spu_streams
== NULL
) {
614 mp_msg(MSGT_VOBSUB
, MSGL_ERR
, "vobsub_ensure_spu_stream: malloc failure");
618 while (vob
->spu_streams_size
<= index
) {
619 packet_queue_construct(vob
->spu_streams
+ vob
->spu_streams_size
);
620 ++vob
->spu_streams_size
;
626 static int vobsub_add_id(vobsub_t
*vob
, const char *id
, size_t idlen
,
627 const unsigned int index
)
629 if (vobsub_ensure_spu_stream(vob
, index
) < 0)
632 free(vob
->spu_streams
[index
].id
);
633 vob
->spu_streams
[index
].id
= malloc(idlen
+ 1);
634 if (vob
->spu_streams
[index
].id
== NULL
) {
635 mp_msg(MSGT_VOBSUB
, MSGL_FATAL
, "vobsub_add_id: malloc failure");
638 vob
->spu_streams
[index
].id
[idlen
] = 0;
639 memcpy(vob
->spu_streams
[index
].id
, id
, idlen
);
641 vob
->spu_streams_current
= index
;
642 mp_msg(MSGT_IDENTIFY
, MSGL_INFO
, "ID_VOBSUB_ID=%d\n", index
);
644 mp_msg(MSGT_IDENTIFY
, MSGL_INFO
, "ID_VSID_%d_LANG=%s\n", index
, vob
->spu_streams
[index
].id
);
645 mp_msg(MSGT_VOBSUB
, MSGL_V
, "[vobsub] subtitle (vobsubid): %d language %s\n",
646 index
, vob
->spu_streams
[index
].id
);
650 static int vobsub_add_timestamp(vobsub_t
*vob
, off_t filepos
, int ms
)
652 packet_queue_t
*queue
;
654 if (vob
->spu_streams
== 0) {
655 mp_msg(MSGT_VOBSUB
, MSGL_WARN
, "[vobsub] warning, binning some index entries. Check your index file\n");
658 queue
= vob
->spu_streams
+ vob
->spu_streams_current
;
659 if (packet_queue_grow(queue
) >= 0) {
660 pkt
= queue
->packets
+ (queue
->packets_size
- 1);
661 pkt
->filepos
= filepos
;
662 pkt
->pts100
= ms
< 0 ? UINT_MAX
: (unsigned int)ms
* 90;
668 static int vobsub_parse_id(vobsub_t
*vob
, const char *line
)
685 if (strncmp("index:", q
, 6))
692 return vobsub_add_id(vob
, p
, idlen
, atoi(q
));
695 static int vobsub_parse_timestamp(vobsub_t
*vob
, const char *line
)
697 // timestamp: HH:MM:SS.mmm, filepos: 0nnnnnnnnn
701 while (isspace(*line
))
736 while (isspace(*line
))
738 if (strncmp("filepos:", line
, 8))
741 while (isspace(*line
))
743 if (! isxdigit(*line
))
745 filepos
= strtol(line
, NULL
, 16);
746 return vobsub_add_timestamp(vob
, filepos
, vob
->delay
+ ms
+ 1000 * (s
+ 60 * (m
+ 60 * h
)));
749 static int vobsub_parse_origin(vobsub_t
*vob
, const char *line
)
753 while (isspace(*line
))
757 vob
->origin_x
= strtoul(line
, &p
, 10);
761 vob
->origin_y
= strtoul(p
, NULL
, 10);
765 unsigned int vobsub_palette_to_yuv(unsigned int pal
)
767 int r
, g
, b
, y
, u
, v
;
768 // Palette in idx file is not rgb value, it was calculated by wrong formula.
769 // Here's reversed formula of the one used to generate palette in idx file.
770 r
= pal
>> 16 & 0xff;
773 y
= av_clip_uint8( 0.1494 * r
+ 0.6061 * g
+ 0.2445 * b
);
774 u
= av_clip_uint8( 0.6066 * r
- 0.4322 * g
- 0.1744 * b
+ 128);
775 v
= av_clip_uint8(-0.08435 * r
- 0.3422 * g
+ 0.4266 * b
+ 128);
776 y
= y
* 219 / 255 + 16;
777 return y
<< 16 | u
<< 8 | v
;
780 unsigned int vobsub_rgb_to_yuv(unsigned int rgb
)
782 int r
, g
, b
, y
, u
, v
;
783 r
= rgb
>> 16 & 0xff;
786 y
= ( 0.299 * r
+ 0.587 * g
+ 0.114 * b
) * 219 / 255 + 16.5;
787 u
= (-0.16874 * r
- 0.33126 * g
+ 0.5 * b
) * 224 / 255 + 128.5;
788 v
= ( 0.5 * r
- 0.41869 * g
- 0.08131 * b
) * 224 / 255 + 128.5;
789 return y
<< 16 | u
<< 8 | v
;
792 static int vobsub_parse_delay(vobsub_t
*vob
, const char *line
)
796 if (*(line
+ 7) == '+') {
799 } else if (*(line
+ 7) == '-') {
803 mp_msg(MSGT_SPUDEC
, MSGL_V
, "forward=%d", forward
);
805 mp_msg(MSGT_VOBSUB
, MSGL_V
, "h=%d,", h
);
807 mp_msg(MSGT_VOBSUB
, MSGL_V
, "m=%d,", m
);
809 mp_msg(MSGT_VOBSUB
, MSGL_V
, "s=%d,", s
);
810 ms
= atoi(line
+ 16);
811 mp_msg(MSGT_VOBSUB
, MSGL_V
, "ms=%d", ms
);
812 vob
->delay
= (ms
+ 1000 * (s
+ 60 * (m
+ 60 * h
))) * forward
;
816 static int vobsub_set_lang(const char *line
)
819 vobsub_id
= atoi(line
+ 8);
823 static int vobsub_parse_one_line(vobsub_t
*vob
, rar_stream_t
*fd
,
824 unsigned char **extradata
,
825 unsigned int *extradata_len
)
829 size_t line_reserve
= 0;
832 line_size
= vobsub_getline(&line
, &line_reserve
, fd
);
833 if (line_size
< 0 || line_size
> 1000000 ||
834 *extradata_len
+line_size
> 10000000) {
838 *extradata
= realloc(*extradata
, *extradata_len
+line_size
+1);
839 memcpy(*extradata
+*extradata_len
, line
, line_size
);
840 *extradata_len
+= line_size
;
841 (*extradata
)[*extradata_len
] = 0;
843 if (*line
== 0 || *line
== '\r' || *line
== '\n' || *line
== '#')
845 else if (strncmp("langidx:", line
, 8) == 0)
846 res
= vobsub_set_lang(line
);
847 else if (strncmp("delay:", line
, 6) == 0)
848 res
= vobsub_parse_delay(vob
, line
);
849 else if (strncmp("id:", line
, 3) == 0)
850 res
= vobsub_parse_id(vob
, line
+ 3);
851 else if (strncmp("org:", line
, 4) == 0)
852 res
= vobsub_parse_origin(vob
, line
+ 4);
853 else if (strncmp("timestamp:", line
, 10) == 0)
854 res
= vobsub_parse_timestamp(vob
, line
+ 10);
856 mp_msg(MSGT_VOBSUB
, MSGL_V
, "vobsub: ignoring %s", line
);
860 mp_msg(MSGT_VOBSUB
, MSGL_ERR
, "ERROR in %s", line
);
867 int vobsub_parse_ifo(void* this, const char *const name
, unsigned int *palette
,
868 unsigned int *width
, unsigned int *height
, int force
,
869 int sid
, char *langid
)
871 vobsub_t
*vob
= this;
873 rar_stream_t
*fd
= rar_open(name
, "rb");
876 mp_msg(MSGT_VOBSUB
, MSGL_WARN
, "VobSub: Can't open IFO file\n");
879 unsigned char block
[0x800];
880 const char *const ifo_magic
= "DVDVIDEO-VTS";
881 if (rar_read(block
, sizeof(block
), 1, fd
) != 1) {
883 mp_msg(MSGT_VOBSUB
, MSGL_ERR
, "VobSub: Can't read IFO header\n");
884 } else if (memcmp(block
, ifo_magic
, strlen(ifo_magic
) + 1))
885 mp_msg(MSGT_VOBSUB
, MSGL_ERR
, "VobSub: Bad magic in IFO header\n");
887 unsigned long pgci_sector
= block
[0xcc] << 24 | block
[0xcd] << 16
888 | block
[0xce] << 8 | block
[0xcf];
889 int standard
= (block
[0x200] & 0x30) >> 4;
890 int resolution
= (block
[0x201] & 0x0c) >> 2;
891 *height
= standard
? 576 : 480;
893 switch (resolution
) {
908 mp_msg(MSGT_VOBSUB
, MSGL_WARN
, "Vobsub: Unknown resolution %d \n", resolution
);
910 if (langid
&& 0 <= sid
&& sid
< 32) {
911 unsigned char *tmp
= block
+ 0x256 + sid
* 6 + 2;
916 if (rar_seek(fd
, pgci_sector
* sizeof(block
), SEEK_SET
)
917 || rar_read(block
, sizeof(block
), 1, fd
) != 1)
918 mp_msg(MSGT_VOBSUB
, MSGL_ERR
, "VobSub: Can't read IFO PGCI\n");
921 unsigned long pgc_offset
= block
[0xc] << 24 | block
[0xd] << 16
922 | block
[0xe] << 8 | block
[0xf];
923 for (idx
= 0; idx
< 16; ++idx
) {
924 unsigned char *p
= block
+ pgc_offset
+ 0xa4 + 4 * idx
;
925 palette
[idx
] = p
[0] << 24 | p
[1] << 16 | p
[2] << 8 | p
[3];
928 vob
->have_palette
= 1;
937 void *vobsub_open(const char *const name
, const char *const ifo
,
938 const int force
, void** spu
)
940 unsigned char *extradata
= NULL
;
941 unsigned int extradata_len
= 0;
942 vobsub_t
*vob
= calloc(1, sizeof(vobsub_t
));
946 vobsubid
= vobsub_id
;
949 buf
= malloc(strlen(name
) + 5);
953 /* read in the info file */
957 vobsub_parse_ifo(vob
, buf
, vob
->palette
, &vob
->orig_frame_width
, &vob
->orig_frame_height
, force
, -1, NULL
);
959 vobsub_parse_ifo(vob
, ifo
, vob
->palette
, &vob
->orig_frame_width
, &vob
->orig_frame_height
, force
, -1, NULL
);
960 /* read in the index */
963 fd
= rar_open(buf
, "rb");
966 mp_msg(MSGT_VOBSUB
, MSGL_ERR
, "VobSub: Can't open IDX file\n");
973 while (vobsub_parse_one_line(vob
, fd
, &extradata
, &extradata_len
) >= 0)
978 *spu
= spudec_new_scaled(vob
->palette
, vob
->orig_frame_width
, vob
->orig_frame_height
, extradata
, extradata_len
);
981 /* read the indexed mpeg_stream */
984 mpg
= mpeg_open(buf
);
987 mp_msg(MSGT_VOBSUB
, MSGL_ERR
, "VobSub: Can't open SUB file\n");
994 long last_pts_diff
= 0;
995 while (!mpeg_eof(mpg
)) {
996 off_t pos
= mpeg_tell(mpg
);
997 if (mpeg_run(mpg
) < 0) {
999 mp_msg(MSGT_VOBSUB
, MSGL_ERR
, "VobSub: mpeg_run error\n");
1002 if (mpg
->packet_size
) {
1003 if ((mpg
->aid
& 0xe0) == 0x20) {
1004 unsigned int sid
= mpg
->aid
& 0x1f;
1005 if (vobsub_ensure_spu_stream(vob
, sid
) >= 0) {
1006 packet_queue_t
*queue
= vob
->spu_streams
+ sid
;
1007 /* get the packet to fill */
1008 if (queue
->packets_size
== 0 && packet_queue_grow(queue
) < 0)
1010 while (queue
->current_index
+ 1 < queue
->packets_size
1011 && queue
->packets
[queue
->current_index
+ 1].filepos
<= pos
)
1012 ++queue
->current_index
;
1013 if (queue
->current_index
< queue
->packets_size
) {
1015 if (queue
->packets
[queue
->current_index
].data
) {
1016 /* insert a new packet and fix the PTS ! */
1017 packet_queue_insert(queue
);
1018 queue
->packets
[queue
->current_index
].pts100
=
1019 mpg
->pts
+ last_pts_diff
;
1021 pkt
= queue
->packets
+ queue
->current_index
;
1022 if (pkt
->pts100
!= UINT_MAX
) {
1023 if (queue
->packets_size
> 1)
1024 last_pts_diff
= pkt
->pts100
- mpg
->pts
;
1026 pkt
->pts100
= mpg
->pts
;
1027 if (mpg
->merge
&& queue
->current_index
> 0) {
1028 packet_t
*last
= &queue
->packets
[queue
->current_index
- 1];
1029 pkt
->pts100
= last
->pts100
;
1032 /* FIXME: should not use mpg_sub internal informations, make a copy */
1033 pkt
->data
= mpg
->packet
;
1034 pkt
->size
= mpg
->packet_size
;
1036 mpg
->packet_reserve
= 0;
1037 mpg
->packet_size
= 0;
1041 mp_msg(MSGT_VOBSUB
, MSGL_WARN
, "don't know what to do with subtitle #%u\n", sid
);
1045 vob
->spu_streams_current
= vob
->spu_streams_size
;
1046 while (vob
->spu_streams_current
-- > 0) {
1047 vob
->spu_streams
[vob
->spu_streams_current
].current_index
= 0;
1048 if (vobsubid
== vob
->spu_streams_current
||
1049 vob
->spu_streams
[vob
->spu_streams_current
].packets_size
> 0)
1050 ++vob
->spu_valid_streams_size
;
1060 void vobsub_close(void *this)
1062 vobsub_t
*vob
= this;
1063 if (vob
->spu_streams
) {
1064 while (vob
->spu_streams_size
--)
1065 packet_queue_destroy(vob
->spu_streams
+ vob
->spu_streams_size
);
1066 free(vob
->spu_streams
);
1071 unsigned int vobsub_get_indexes_count(void *vobhandle
)
1073 vobsub_t
*vob
= vobhandle
;
1074 return vob
->spu_valid_streams_size
;
1077 char *vobsub_get_id(void *vobhandle
, unsigned int index
)
1079 vobsub_t
*vob
= vobhandle
;
1080 return (index
< vob
->spu_streams_size
) ? vob
->spu_streams
[index
].id
: NULL
;
1083 int vobsub_get_id_by_index(void *vobhandle
, unsigned int index
)
1085 vobsub_t
*vob
= vobhandle
;
1089 for (i
= 0, j
= 0; i
< vob
->spu_streams_size
; ++i
)
1090 if (i
== vobsubid
|| vob
->spu_streams
[i
].packets_size
> 0) {
1098 int vobsub_get_index_by_id(void *vobhandle
, int id
)
1100 vobsub_t
*vob
= vobhandle
;
1102 if (vob
== NULL
|| id
< 0 || id
>= vob
->spu_streams_size
)
1104 if (id
!= vobsubid
&& !vob
->spu_streams
[id
].packets_size
)
1106 for (i
= 0, j
= 0; i
< id
; ++i
)
1107 if (i
== vobsubid
|| vob
->spu_streams
[i
].packets_size
> 0)
1112 int vobsub_set_from_lang(void *vobhandle
, char **lang
)
1115 vobsub_t
*vob
= vobhandle
;
1118 for (int n
= 0; lang
[n
]; n
++) {
1119 for (i
= 0; i
< vob
->spu_streams_size
; i
++)
1120 if (vob
->spu_streams
[i
].id
)
1121 if ((strncmp(vob
->spu_streams
[i
].id
, lang
[n
], 2) == 0)) {
1123 mp_msg(MSGT_VOBSUB
, MSGL_INFO
, "Selected VOBSUB language: %d language: %s\n", i
, vob
->spu_streams
[i
].id
);
1128 mp_msg(MSGT_VOBSUB
, MSGL_WARN
, "No matching VOBSUB language found!\n");
1132 /// make sure we seek to the first packet of packets having same pts values.
1133 static void vobsub_queue_reseek(packet_queue_t
*queue
, unsigned int pts100
)
1135 int reseek_count
= 0;
1136 unsigned int lastpts
= 0;
1138 if (queue
->current_index
> 0
1139 && (queue
->packets
[queue
->current_index
].pts100
== UINT_MAX
1140 || queue
->packets
[queue
->current_index
].pts100
> pts100
)) {
1141 // possible pts seek previous, try to check it.
1143 while (queue
->current_index
>= i
1144 && queue
->packets
[queue
->current_index
-i
].pts100
== UINT_MAX
)
1146 if (queue
->current_index
>= i
1147 && queue
->packets
[queue
->current_index
-i
].pts100
> pts100
)
1148 // pts seek previous confirmed, reseek from beginning
1149 queue
->current_index
= 0;
1151 while (queue
->current_index
< queue
->packets_size
1152 && queue
->packets
[queue
->current_index
].pts100
<= pts100
) {
1153 lastpts
= queue
->packets
[queue
->current_index
].pts100
;
1154 ++queue
->current_index
;
1157 while (reseek_count
-- && --queue
->current_index
) {
1158 if (queue
->packets
[queue
->current_index
-1].pts100
!= UINT_MAX
&&
1159 queue
->packets
[queue
->current_index
-1].pts100
!= lastpts
)
1164 int vobsub_get_packet(void *vobhandle
, float pts
, void** data
, int* timestamp
)
1166 vobsub_t
*vob
= vobhandle
;
1167 unsigned int pts100
= 90000 * pts
;
1168 if (vob
->spu_streams
&& 0 <= vobsub_id
&& (unsigned) vobsub_id
< vob
->spu_streams_size
) {
1169 packet_queue_t
*queue
= vob
->spu_streams
+ vobsub_id
;
1171 vobsub_queue_reseek(queue
, pts100
);
1173 while (queue
->current_index
< queue
->packets_size
) {
1174 packet_t
*pkt
= queue
->packets
+ queue
->current_index
;
1175 if (pkt
->pts100
!= UINT_MAX
)
1176 if (pkt
->pts100
<= pts100
) {
1177 ++queue
->current_index
;
1179 *timestamp
= pkt
->pts100
;
1184 ++queue
->current_index
;
1190 int vobsub_get_next_packet(void *vobhandle
, void** data
, int* timestamp
)
1192 vobsub_t
*vob
= vobhandle
;
1193 if (vob
->spu_streams
&& 0 <= vobsub_id
&& (unsigned) vobsub_id
< vob
->spu_streams_size
) {
1194 packet_queue_t
*queue
= vob
->spu_streams
+ vobsub_id
;
1195 if (queue
->current_index
< queue
->packets_size
) {
1196 packet_t
*pkt
= queue
->packets
+ queue
->current_index
;
1197 ++queue
->current_index
;
1199 *timestamp
= pkt
->pts100
;
1206 void vobsub_seek(void * vobhandle
, float pts
)
1208 vobsub_t
* vob
= vobhandle
;
1209 packet_queue_t
* queue
;
1210 int seek_pts100
= pts
* 90000;
1212 if (vob
->spu_streams
&& 0 <= vobsub_id
&& (unsigned) vobsub_id
< vob
->spu_streams_size
) {
1213 /* do not seek if we don't know the id */
1214 if (vobsub_get_id(vob
, vobsub_id
) == NULL
)
1216 queue
= vob
->spu_streams
+ vobsub_id
;
1217 queue
->current_index
= 0;
1218 vobsub_queue_reseek(queue
, seek_pts100
);
1222 void vobsub_reset(void *vobhandle
)
1224 vobsub_t
*vob
= vobhandle
;
1225 if (vob
->spu_streams
) {
1226 unsigned int n
= vob
->spu_streams_size
;
1228 vob
->spu_streams
[n
].current_index
= 0;
1232 /**********************************************************************
1234 **********************************************************************/
1242 static void create_idx(vobsub_out_t
*me
, const unsigned int *palette
,
1243 unsigned int orig_width
, unsigned int orig_height
)
1247 "# VobSub index file, v7 (do not modify this line!)\n"
1249 "# Generated by %s\n"
1250 "# See <URL:http://www.mplayerhq.hu/> for more information about MPlayer\n"
1251 "# See <URL:http://wiki.multimedia.cx/index.php?title=VOBsub> for more information about Vobsub\n"
1254 mplayer_version
, orig_width
, orig_height
);
1256 fputs("palette:", me
->fidx
);
1257 for (i
= 0; i
< 16; ++i
) {
1258 const double y
= palette
[i
] >> 16 & 0xff,
1259 u
= (palette
[i
] >> 8 & 0xff) - 128.0,
1260 v
= (palette
[i
] & 0xff) - 128.0;
1262 putc(',', me
->fidx
);
1263 fprintf(me
->fidx
, " %02x%02x%02x",
1264 av_clip_uint8(y
+ 1.4022 * u
),
1265 av_clip_uint8(y
- 0.3456 * u
- 0.7145 * v
),
1266 av_clip_uint8(y
+ 1.7710 * v
));
1268 putc('\n', me
->fidx
);
1271 fprintf(me
->fidx
, "# ON: displays only forced subtitles, OFF: shows everything\n"
1272 "forced subs: OFF\n");
1275 void *vobsub_out_open(const char *basename
, const unsigned int *palette
,
1276 unsigned int orig_width
, unsigned int orig_height
,
1277 const char *id
, unsigned int index
)
1279 vobsub_out_t
*result
= NULL
;
1281 filename
= malloc(strlen(basename
) + 5);
1283 result
= malloc(sizeof(vobsub_out_t
));
1285 result
->aid
= index
;
1286 strcpy(filename
, basename
);
1287 strcat(filename
, ".sub");
1288 result
->fsub
= fopen(filename
, "ab");
1289 if (result
->fsub
== NULL
)
1290 perror("Error: vobsub_out_open subtitle file open failed");
1291 strcpy(filename
, basename
);
1292 strcat(filename
, ".idx");
1293 result
->fidx
= fopen(filename
, "ab");
1295 if (ftell(result
->fidx
) == 0) {
1296 create_idx(result
, palette
, orig_width
, orig_height
);
1297 /* Make the selected language the default language */
1298 fprintf(result
->fidx
, "\n# Language index in use\nlangidx: %u\n", index
);
1300 fprintf(result
->fidx
, "\nid: %s, index: %u\n", id
? id
: "xx", index
);
1301 /* So that we can check the file now */
1302 fflush(result
->fidx
);
1304 perror("Error: vobsub_out_open index file open failed");
1311 void vobsub_out_close(void *me
)
1313 vobsub_out_t
*vob
= me
;
1321 void vobsub_out_output(void *me
, const unsigned char *packet
,
1322 int len
, double pts
)
1324 static double last_pts
;
1325 static int last_pts_set
= 0;
1326 vobsub_out_t
*vob
= me
;
1328 /* Windows' Vobsub require that every packet is exactly 2kB long */
1329 unsigned char buffer
[2048];
1332 /* Do not output twice a line with the same timestamp, this
1333 breaks Windows' Vobsub */
1334 if (vob
->fidx
&& (!last_pts_set
|| last_pts
!= pts
)) {
1335 static unsigned int last_h
= 9999, last_m
= 9999, last_s
= 9999, last_ms
= 9999;
1336 unsigned int h
, m
, ms
;
1343 ms
= (s
- (unsigned int) s
) * 1000;
1344 if (ms
>= 1000) /* prevent overfolws or bad float stuff */
1346 if (h
!= last_h
|| m
!= last_m
|| (unsigned int) s
!= last_s
|| ms
!= last_ms
) {
1347 fprintf(vob
->fidx
, "timestamp: %02u:%02u:%02u:%03u, filepos: %09lx\n",
1348 h
, m
, (unsigned int) s
, ms
, ftell(vob
->fsub
));
1351 last_s
= (unsigned int) s
;
1358 /* Packet start code: Windows' Vobsub needs this */
1360 *p
++ = 0; /* 0x00 */
1368 static unsigned char last_pts
[5] = { 0, 0, 0, 0, 0};
1369 unsigned char now_pts
[5];
1370 int pts_len
, pad_len
, datalen
= len
;
1372 now_pts
[0] = 0x21 | (((unsigned long)pts
>> 29) & 0x0e);
1373 now_pts
[1] = ((unsigned long)pts
>> 22) & 0xff;
1374 now_pts
[2] = 0x01 | (((unsigned long)pts
>> 14) & 0xfe);
1375 now_pts
[3] = ((unsigned long)pts
>> 7) & 0xff;
1376 now_pts
[4] = 0x01 | (((unsigned long)pts
<< 1) & 0xfe);
1377 pts_len
= memcmp(last_pts
, now_pts
, sizeof(now_pts
)) ? sizeof(now_pts
) : 0;
1378 memcpy(last_pts
, now_pts
, sizeof(now_pts
));
1380 datalen
+= 3; /* Version, PTS_flags, pts_len */
1382 datalen
+= 1; /* AID */
1383 pad_len
= 2048 - (p
- buffer
) - 4 /* MPEG ID */ - 2 /* payload len */ - datalen
;
1384 /* XXX - Go figure what should go here! In any case the
1385 packet has to be completly filled. If I can fill it
1386 with padding (0x000001be) latter I'll do that. But if
1387 there is only room for 6 bytes then I can not write a
1388 padding packet. So I add some padding in the PTS
1389 field. This looks like a dirty kludge. Oh well... */
1391 /* Packet is too big. Let's try ommiting the PTS field */
1395 } else if (pad_len
> 6)
1399 *p
++ = 0; /* 0x0e */
1404 *p
++ = (datalen
>> 8) & 0xff; /* length of payload */
1405 *p
++ = datalen
& 0xff;
1406 *p
++ = 0x80; /* System-2 (.VOB) stream */
1407 *p
++ = pts_len
? 0x80 : 0x00; /* pts_flags */
1408 *p
++ = pts_len
+ pad_len
;
1409 memcpy(p
, now_pts
, pts_len
);
1411 memset(p
, 0, pad_len
);
1414 *p
++ = 0x20 | vob
->aid
; /* aid */
1415 if (fwrite(buffer
, p
- buffer
, 1, vob
->fsub
) != 1
1416 || fwrite(packet
, len
, 1, vob
->fsub
) != 1)
1417 perror("ERROR: vobsub write failed");
1419 remain
-= p
- buffer
+ len
;
1428 *p
++ = (remain
- 6) >> 8;
1429 *p
++ = (remain
- 6) & 0xff;
1430 /* for better compression, blank this */
1431 memset(buffer
+ 6, 0, remain
- (p
- buffer
));
1432 if (fwrite(buffer
, remain
, 1, vob
->fsub
) != 1)
1433 perror("ERROR: vobsub padding write failed");
1434 } else if (remain
> 0) {
1435 /* I don't know what to output. But anyway the block
1436 needs to be 2KB big */
1437 memset(buffer
, 0, remain
);
1438 if (fwrite(buffer
, remain
, 1, vob
->fsub
) != 1)
1439 perror("ERROR: vobsub blank padding write failed");
1440 } else if (remain
< 0)
1442 "\nERROR: wrong thing happenned...\n"
1443 " I wrote a %i data bytes spu packet and that's too long\n", len
);