2 * Some code freely inspired from VobSub <URL:http://vobsub.edensrising.com>,
3 * with kind permission from Gabest <gabest@freemail.hu>
15 #include <sys/types.h>
24 #include "unrar_exec.h"
25 #elif defined(USE_UNRARLIB)
28 #include "libavutil/common.h"
31 // Record the original -vobsubid set by commandline, since vobsub_id will be
32 // overridden if slang match any of vobsub streams.
33 static int vobsubid
= -2;
35 /**********************************************************************
37 * The RAR file must have the same basename as the file to open
38 * See <URL:http://www.unrarlib.org/>
39 **********************************************************************/
40 #if defined(USE_UNRARLIB) || defined(USE_UNRAR_EXEC)
48 rar_open(const char *const filename
, const char *const mode
)
51 /* unrarlib can only read */
52 if (strcmp("r", mode
) && strcmp("rb", mode
)) {
56 stream
= malloc(sizeof(rar_stream_t
));
59 /* first try normal access */
60 stream
->file
= fopen(filename
, mode
);
61 if (stream
->file
== NULL
) {
65 /* Guess the RAR archive filename */
67 p
= strrchr(filename
, '.');
69 ptrdiff_t l
= p
- filename
;
70 rar_filename
= malloc(l
+ 5);
71 if (rar_filename
== NULL
) {
75 strncpy(rar_filename
, filename
, l
);
76 strcpy(rar_filename
+ l
, ".rar");
79 rar_filename
= malloc(strlen(filename
) + 5);
80 if (rar_filename
== NULL
) {
84 strcpy(rar_filename
, filename
);
85 strcat(rar_filename
, ".rar");
87 /* get rid of the path if there is any */
88 if ((p
= strrchr(filename
, '/')) == NULL
) {
94 rc
= unrar_exec_get(&stream
->data
, &stream
->size
, p
, rar_filename
);
98 rc
= urarlib_get(&stream
->data
, &stream
->size
, (char*) p
, rar_filename
, "");
101 /* There is no matching filename in the archive. However, sometimes
102 * the files we are looking for have been given arbitrary names in the archive.
103 * Let's look for a file with an exact match in the extension only. */
104 int i
, num_files
= -1, name_len
;
105 ArchiveList_struct
*list
, *lp
;
107 /* the cast in the next line is a hack to overcome a design flaw (IMHO) in unrarlib */
108 num_files
= urarlib_list (rar_filename
, (ArchiveList_struct
*)&list
);
110 #ifdef USE_UNRAR_EXEC
112 num_files
= unrar_exec_list(rar_filename
, &list
);
116 demanded_ext
= strrchr (p
, '.');
118 int demanded_ext_len
= strlen (demanded_ext
);
119 for (i
=0, lp
=list
; i
<num_files
; i
++, lp
=lp
->next
) {
120 name_len
= strlen (lp
->item
.Name
);
121 if (name_len
>= demanded_ext_len
&& !strcasecmp (lp
->item
.Name
+ name_len
- demanded_ext_len
, demanded_ext
)) {
122 #ifdef USE_UNRAR_EXEC
123 rc
= unrar_exec_get(&stream
->data
, &stream
->size
,
124 lp
->item
.Name
, rar_filename
);
128 rc
= urarlib_get(&stream
->data
, &stream
->size
,
129 lp
->item
.Name
, rar_filename
, "");
136 urarlib_freelist (list
);
138 unrar_exec_freelist(list
);
155 rar_close(rar_stream_t
*stream
)
158 return fclose(stream
->file
);
164 rar_eof(rar_stream_t
*stream
)
167 return feof(stream
->file
);
168 return stream
->pos
>= stream
->size
;
172 rar_tell(rar_stream_t
*stream
)
175 return ftell(stream
->file
);
180 rar_seek(rar_stream_t
*stream
, long offset
, int whence
)
183 return fseek(stream
->file
, offset
, whence
);
190 stream
->pos
= offset
;
193 if (offset
< 0 && stream
->pos
< (unsigned long) -offset
) {
197 stream
->pos
+= offset
;
200 if (offset
< 0 && stream
->size
< (unsigned long) -offset
) {
204 stream
->pos
= stream
->size
+ offset
;
214 rar_getc(rar_stream_t
*stream
)
217 return getc(stream
->file
);
220 return stream
->data
[stream
->pos
++];
224 rar_read(void *ptr
, size_t size
, size_t nmemb
, rar_stream_t
*stream
)
227 unsigned long remain
;
229 return fread(ptr
, size
, nmemb
, stream
->file
);
233 remain
= stream
->size
- stream
->pos
;
235 res
= remain
/ size
* size
;
236 memcpy(ptr
, stream
->data
+ stream
->pos
, res
);
243 typedef FILE rar_stream_t
;
244 #define rar_open fopen
245 #define rar_close fclose
247 #define rar_tell ftell
248 #define rar_seek fseek
249 #define rar_getc getc
250 #define rar_read fread
253 /**********************************************************************/
256 vobsub_getline(char **lineptr
, size_t *n
, rar_stream_t
*stream
)
260 if (*lineptr
== NULL
) {
261 *lineptr
= malloc(4096);
266 char *tmp
= realloc(*lineptr
, 4096);
272 if (*lineptr
== NULL
|| *n
== 0)
275 for (c
= rar_getc(stream
); c
!= EOF
; c
= rar_getc(stream
)) {
277 char *tmp
= realloc(*lineptr
, *n
* 2);
283 (*lineptr
)[res
++] = c
;
295 /**********************************************************************
297 **********************************************************************/
300 rar_stream_t
*stream
;
303 unsigned char *packet
;
304 unsigned int packet_reserve
;
305 unsigned int packet_size
;
309 mpeg_open(const char *filename
)
311 mpeg_t
*res
= malloc(sizeof(mpeg_t
));
312 int err
= res
== NULL
;
317 res
->packet_size
= 0;
318 res
->packet_reserve
= 0;
319 res
->stream
= rar_open(filename
, "rb");
320 err
= res
->stream
== NULL
;
322 perror("fopen Vobsub file failed");
326 return err
? NULL
: res
;
330 mpeg_free(mpeg_t
*mpeg
)
335 rar_close(mpeg
->stream
);
340 mpeg_eof(mpeg_t
*mpeg
)
342 return rar_eof(mpeg
->stream
);
346 mpeg_tell(mpeg_t
*mpeg
)
348 return rar_tell(mpeg
->stream
);
352 mpeg_run(mpeg_t
*mpeg
)
354 unsigned int len
, idx
, version
;
356 /* Goto start of a packet, it starts with 0x000001?? */
357 const unsigned char wanted
[] = { 0, 0, 1 };
358 unsigned char buf
[5];
361 mpeg
->packet_size
= 0;
362 if (rar_read(buf
, 4, 1, mpeg
->stream
) != 1)
364 while (memcmp(buf
, wanted
, sizeof(wanted
)) != 0) {
365 c
= rar_getc(mpeg
->stream
);
368 memmove(buf
, buf
+ 1, 3);
372 case 0xb9: /* System End Code */
374 case 0xba: /* Packet start code */
375 c
= rar_getc(mpeg
->stream
);
378 if ((c
& 0xc0) == 0x40)
380 else if ((c
& 0xf0) == 0x20)
383 mp_msg(MSGT_VOBSUB
,MSGL_ERR
, "VobSub: Unsupported MPEG version: 0x%02x\n", c
);
387 if (rar_seek(mpeg
->stream
, 9, SEEK_CUR
))
390 else if (version
== 2) {
391 if (rar_seek(mpeg
->stream
, 7, SEEK_CUR
))
397 case 0xbd: /* packet */
398 if (rar_read(buf
, 2, 1, mpeg
->stream
) != 1)
400 len
= buf
[0] << 8 | buf
[1];
401 idx
= mpeg_tell(mpeg
);
402 c
= rar_getc(mpeg
->stream
);
405 if ((c
& 0xC0) == 0x40) { /* skip STD scale & size */
406 if (rar_getc(mpeg
->stream
) < 0)
408 c
= rar_getc(mpeg
->stream
);
412 if ((c
& 0xf0) == 0x20) { /* System-1 stream timestamp */
413 /* Do we need this? */
416 else if ((c
& 0xf0) == 0x30) {
417 /* Do we need this? */
420 else if ((c
& 0xc0) == 0x80) { /* System-2 (.VOB) stream */
421 unsigned int pts_flags
, hdrlen
, dataidx
;
422 c
= rar_getc(mpeg
->stream
);
426 c
= rar_getc(mpeg
->stream
);
430 dataidx
= mpeg_tell(mpeg
) + hdrlen
;
431 if (dataidx
> idx
+ len
) {
432 mp_msg(MSGT_VOBSUB
,MSGL_ERR
, "Invalid header length: %d (total length: %d, idx: %d, dataidx: %d)\n",
433 hdrlen
, len
, idx
, dataidx
);
436 if ((pts_flags
& 0xc0) == 0x80) {
437 if (rar_read(buf
, 5, 1, mpeg
->stream
) != 1)
439 if (!(((buf
[0] & 0xf0) == 0x20) && (buf
[0] & 1) && (buf
[2] & 1) && (buf
[4] & 1))) {
440 mp_msg(MSGT_VOBSUB
,MSGL_ERR
, "vobsub PTS error: 0x%02x %02x%02x %02x%02x \n",
441 buf
[0], buf
[1], buf
[2], buf
[3], buf
[4]);
445 mpeg
->pts
= ((buf
[0] & 0x0e) << 29 | buf
[1] << 22 | (buf
[2] & 0xfe) << 14
446 | buf
[3] << 7 | (buf
[4] >> 1));
448 else /* if ((pts_flags & 0xc0) == 0xc0) */ {
452 rar_seek(mpeg
->stream
, dataidx
, SEEK_SET
);
453 mpeg
->aid
= rar_getc(mpeg
->stream
);
455 mp_msg(MSGT_VOBSUB
,MSGL_ERR
, "Bogus aid %d\n", mpeg
->aid
);
458 mpeg
->packet_size
= len
- ((unsigned int) mpeg_tell(mpeg
) - idx
);
459 if (mpeg
->packet_reserve
< mpeg
->packet_size
) {
462 mpeg
->packet
= malloc(mpeg
->packet_size
);
464 mpeg
->packet_reserve
= mpeg
->packet_size
;
466 if (mpeg
->packet
== NULL
) {
467 mp_msg(MSGT_VOBSUB
,MSGL_FATAL
,"malloc failure");
468 mpeg
->packet_reserve
= 0;
469 mpeg
->packet_size
= 0;
472 if (rar_read(mpeg
->packet
, mpeg
->packet_size
, 1, mpeg
->stream
) != 1) {
473 mp_msg(MSGT_VOBSUB
,MSGL_ERR
,"fread failure");
474 mpeg
->packet_size
= 0;
480 case 0xbe: /* Padding */
481 if (rar_read(buf
, 2, 1, mpeg
->stream
) != 1)
483 len
= buf
[0] << 8 | buf
[1];
484 if (len
> 0 && rar_seek(mpeg
->stream
, len
, SEEK_CUR
))
488 if (0xc0 <= buf
[3] && buf
[3] < 0xf0) {
489 /* MPEG audio or video */
490 if (rar_read(buf
, 2, 1, mpeg
->stream
) != 1)
492 len
= buf
[0] << 8 | buf
[1];
493 if (len
> 0 && rar_seek(mpeg
->stream
, len
, SEEK_CUR
))
498 mp_msg(MSGT_VOBSUB
,MSGL_ERR
,"unknown header 0x%02X%02X%02X%02X\n",
499 buf
[0], buf
[1], buf
[2], buf
[3]);
506 /**********************************************************************
508 **********************************************************************/
520 unsigned int packets_reserve
;
521 unsigned int packets_size
;
522 unsigned int current_index
;
526 packet_construct(packet_t
*pkt
)
535 packet_destroy(packet_t
*pkt
)
542 packet_queue_construct(packet_queue_t
*queue
)
545 queue
->packets
= NULL
;
546 queue
->packets_reserve
= 0;
547 queue
->packets_size
= 0;
548 queue
->current_index
= 0;
552 packet_queue_destroy(packet_queue_t
*queue
)
554 if (queue
->packets
) {
555 while (queue
->packets_size
--)
556 packet_destroy(queue
->packets
+ queue
->packets_size
);
557 free(queue
->packets
);
562 /* Make sure there is enough room for needed_size packets in the
565 packet_queue_ensure(packet_queue_t
*queue
, unsigned int needed_size
)
567 if (queue
->packets_reserve
< needed_size
) {
568 if (queue
->packets
) {
569 packet_t
*tmp
= realloc(queue
->packets
, 2 * queue
->packets_reserve
* sizeof(packet_t
));
571 mp_msg(MSGT_VOBSUB
,MSGL_FATAL
,"realloc failure");
574 queue
->packets
= tmp
;
575 queue
->packets_reserve
*= 2;
578 queue
->packets
= malloc(sizeof(packet_t
));
579 if (queue
->packets
== NULL
) {
580 mp_msg(MSGT_VOBSUB
,MSGL_FATAL
,"malloc failure");
583 queue
->packets_reserve
= 1;
589 /* add one more packet */
591 packet_queue_grow(packet_queue_t
*queue
)
593 if (packet_queue_ensure(queue
, queue
->packets_size
+ 1) < 0)
595 packet_construct(queue
->packets
+ queue
->packets_size
);
596 ++queue
->packets_size
;
600 /* insert a new packet, duplicating pts from the current one */
602 packet_queue_insert(packet_queue_t
*queue
)
605 if (packet_queue_ensure(queue
, queue
->packets_size
+ 1) < 0)
607 /* XXX packet_size does not reflect the real thing here, it will be updated a bit later */
608 memmove(queue
->packets
+ queue
->current_index
+ 2,
609 queue
->packets
+ queue
->current_index
+ 1,
610 sizeof(packet_t
) * (queue
->packets_size
- queue
->current_index
- 1));
611 pkts
= queue
->packets
+ queue
->current_index
;
612 ++queue
->packets_size
;
613 ++queue
->current_index
;
614 packet_construct(pkts
+ 1);
615 pkts
[1].pts100
= pkts
[0].pts100
;
616 pkts
[1].filepos
= pkts
[0].filepos
;
620 /**********************************************************************
622 **********************************************************************/
625 unsigned int palette
[16];
626 unsigned int cuspal
[4];
629 unsigned int have_palette
;
630 unsigned int orig_frame_width
, orig_frame_height
;
631 unsigned int origin_x
, origin_y
;
632 unsigned int forced_subs
;
634 packet_queue_t
*spu_streams
;
635 unsigned int spu_streams_size
;
636 unsigned int spu_streams_current
;
637 unsigned int spu_valid_streams_size
;
640 /* Make sure that the spu stream idx exists. */
642 vobsub_ensure_spu_stream(vobsub_t
*vob
, unsigned int index
)
644 if (index
>= vob
->spu_streams_size
) {
645 /* This is a new stream */
646 if (vob
->spu_streams
) {
647 packet_queue_t
*tmp
= realloc(vob
->spu_streams
, (index
+ 1) * sizeof(packet_queue_t
));
649 mp_msg(MSGT_VOBSUB
,MSGL_ERR
,"vobsub_ensure_spu_stream: realloc failure");
652 vob
->spu_streams
= tmp
;
655 vob
->spu_streams
= malloc((index
+ 1) * sizeof(packet_queue_t
));
656 if (vob
->spu_streams
== NULL
) {
657 mp_msg(MSGT_VOBSUB
,MSGL_ERR
,"vobsub_ensure_spu_stream: malloc failure");
661 while (vob
->spu_streams_size
<= index
) {
662 packet_queue_construct(vob
->spu_streams
+ vob
->spu_streams_size
);
663 ++vob
->spu_streams_size
;
670 vobsub_add_id(vobsub_t
*vob
, const char *id
, size_t idlen
, const unsigned int index
)
672 if (vobsub_ensure_spu_stream(vob
, index
) < 0)
675 if (vob
->spu_streams
[index
].id
)
676 free(vob
->spu_streams
[index
].id
);
677 vob
->spu_streams
[index
].id
= malloc(idlen
+ 1);
678 if (vob
->spu_streams
[index
].id
== NULL
) {
679 mp_msg(MSGT_VOBSUB
,MSGL_FATAL
,"vobsub_add_id: malloc failure");
682 vob
->spu_streams
[index
].id
[idlen
] = 0;
683 memcpy(vob
->spu_streams
[index
].id
, id
, idlen
);
685 vob
->spu_streams_current
= index
;
686 mp_msg(MSGT_IDENTIFY
, MSGL_INFO
, "ID_VOBSUB_ID=%d\n", index
);
688 mp_msg(MSGT_IDENTIFY
, MSGL_INFO
, "ID_VSID_%d_LANG=%s\n", index
, vob
->spu_streams
[index
].id
);
689 mp_msg(MSGT_VOBSUB
,MSGL_V
,"[vobsub] subtitle (vobsubid): %d language %s\n",
690 index
, vob
->spu_streams
[index
].id
);
695 vobsub_add_timestamp(vobsub_t
*vob
, off_t filepos
, int ms
)
697 packet_queue_t
*queue
;
699 if (vob
->spu_streams
== 0) {
700 mp_msg(MSGT_VOBSUB
,MSGL_WARN
,"[vobsub] warning, binning some index entries. Check your index file\n");
703 queue
= vob
->spu_streams
+ vob
->spu_streams_current
;
704 if (packet_queue_grow(queue
) >= 0) {
705 pkt
= queue
->packets
+ (queue
->packets_size
- 1);
706 pkt
->filepos
= filepos
;
707 pkt
->pts100
= ms
< 0 ? UINT_MAX
: (unsigned int)ms
* 90;
714 vobsub_parse_id(vobsub_t
*vob
, const char *line
)
731 if (strncmp("index:", q
, 6))
738 return vobsub_add_id(vob
, p
, idlen
, atoi(q
));
742 vobsub_parse_timestamp(vobsub_t
*vob
, const char *line
)
744 // timestamp: HH:MM:SS.mmm, filepos: 0nnnnnnnnn
748 while (isspace(*line
))
783 while (isspace(*line
))
785 if (strncmp("filepos:", line
, 8))
788 while (isspace(*line
))
790 if (! isxdigit(*line
))
792 filepos
= strtol(line
, NULL
, 16);
793 return vobsub_add_timestamp(vob
, filepos
, vob
->delay
+ ms
+ 1000 * (s
+ 60 * (m
+ 60 * h
)));
797 vobsub_parse_size(vobsub_t
*vob
, const char *line
)
801 while (isspace(*line
))
805 vob
->orig_frame_width
= strtoul(line
, &p
, 10);
809 vob
->orig_frame_height
= strtoul(p
, NULL
, 10);
814 vobsub_parse_origin(vobsub_t
*vob
, const char *line
)
818 while (isspace(*line
))
822 vob
->origin_x
= strtoul(line
, &p
, 10);
826 vob
->origin_y
= strtoul(p
, NULL
, 10);
830 unsigned int vobsub_palette_to_yuv(unsigned int pal
)
832 int r
, g
, b
, y
, u
, v
;
833 // Palette in idx file is not rgb value, it was calculated by wrong forumla.
834 // Here's reversed forumla of the one used to generate palette in idx file.
835 r
= pal
>> 16 & 0xff;
838 y
= av_clip_uint8( 0.1494 * r
+ 0.6061 * g
+ 0.2445 * b
);
839 u
= av_clip_uint8( 0.6066 * r
- 0.4322 * g
- 0.1744 * b
+ 128);
840 v
= av_clip_uint8(-0.08435 * r
- 0.3422 * g
+ 0.4266 * b
+ 128);
841 y
= y
* 219 / 255 + 16;
842 return y
<< 16 | u
<< 8 | v
;
845 unsigned int vobsub_rgb_to_yuv(unsigned int rgb
)
847 int r
, g
, b
, y
, u
, v
;
848 r
= rgb
>> 16 & 0xff;
851 y
= ( 0.299 * r
+ 0.587 * g
+ 0.114 * b
) * 219 / 255 + 16.5;
852 u
= (-0.16874 * r
- 0.33126 * g
+ 0.5 * b
) * 224 / 255 + 128.5;
853 v
= ( 0.5 * r
- 0.41869 * g
- 0.08131 * b
) * 224 / 255 + 128.5;
854 return y
<< 16 | u
<< 8 | v
;
858 vobsub_parse_palette(vobsub_t
*vob
, const char *line
)
860 // palette: XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX, XXXXXX
866 while (isspace(*line
))
873 tmp
= strtoul(line
, NULL
, 16);
874 vob
->palette
[n
++] = vobsub_palette_to_yuv(tmp
);
881 vob
->have_palette
= 1;
886 vobsub_parse_custom(vobsub_t
*vob
, const char *line
)
888 //custom colors: OFF/ON(0/1)
889 if ((strncmp("ON", line
+ 15, 2) == 0)||strncmp("1", line
+ 15, 1) == 0)
891 else if ((strncmp("OFF", line
+ 15, 3) == 0)||strncmp("0", line
+ 15, 1) == 0)
899 vobsub_parse_cuspal(vobsub_t
*vob
, const char *line
)
901 //colors: XXXXXX, XXXXXX, XXXXXX, XXXXXX
907 while (isspace(*line
))
914 tmp
= strtoul(line
, NULL
, 16);
915 vob
->cuspal
[n
++] = vobsub_rgb_to_yuv(tmp
);
925 /* don't know how to use tridx */
927 vobsub_parse_tridx(const char *line
)
931 tridx
= strtoul((line
+ 26), NULL
, 16);
932 tridx
= ((tridx
&0x1000)>>12) | ((tridx
&0x100)>>7) | ((tridx
&0x10)>>2) | ((tridx
&1)<<3);
937 vobsub_parse_delay(vobsub_t
*vob
, const char *line
)
941 if (*(line
+ 7) == '+'){
945 else if (*(line
+ 7) == '-'){
949 mp_msg(MSGT_SPUDEC
,MSGL_V
, "forward=%d", forward
);
951 mp_msg(MSGT_VOBSUB
,MSGL_V
, "h=%d," ,h
);
953 mp_msg(MSGT_VOBSUB
,MSGL_V
, "m=%d,", m
);
955 mp_msg(MSGT_VOBSUB
,MSGL_V
, "s=%d,", s
);
956 ms
= atoi(line
+ 16);
957 mp_msg(MSGT_VOBSUB
,MSGL_V
, "ms=%d", ms
);
958 vob
->delay
= (ms
+ 1000 * (s
+ 60 * (m
+ 60 * h
))) * forward
;
963 vobsub_set_lang(const char *line
)
966 vobsub_id
= atoi(line
+ 8);
971 vobsub_parse_forced_subs(vobsub_t
*vob
, const char *line
)
979 if (strncasecmp("on",p
,2) == 0){
982 } else if (strncasecmp("off",p
,3) == 0){
991 vobsub_parse_one_line(vobsub_t
*vob
, rar_stream_t
*fd
)
995 size_t line_reserve
= 0;
998 line_size
= vobsub_getline(&line
, &line_reserve
, fd
);
1002 if (*line
== 0 || *line
== '\r' || *line
== '\n' || *line
== '#')
1004 else if (strncmp("langidx:", line
, 8) == 0)
1005 res
= vobsub_set_lang(line
);
1006 else if (strncmp("delay:", line
, 6) == 0)
1007 res
= vobsub_parse_delay(vob
, line
);
1008 else if (strncmp("id:", line
, 3) == 0)
1009 res
= vobsub_parse_id(vob
, line
+ 3);
1010 else if (strncmp("palette:", line
, 8) == 0)
1011 res
= vobsub_parse_palette(vob
, line
+ 8);
1012 else if (strncmp("size:", line
, 5) == 0)
1013 res
= vobsub_parse_size(vob
, line
+ 5);
1014 else if (strncmp("org:", line
, 4) == 0)
1015 res
= vobsub_parse_origin(vob
, line
+ 4);
1016 else if (strncmp("timestamp:", line
, 10) == 0)
1017 res
= vobsub_parse_timestamp(vob
, line
+ 10);
1018 else if (strncmp("custom colors:", line
, 14) == 0)
1019 //custom colors: ON/OFF, tridx: XXXX, colors: XXXXXX, XXXXXX, XXXXXX,XXXXXX
1020 res
= vobsub_parse_cuspal(vob
, line
) + vobsub_parse_tridx(line
) + vobsub_parse_custom(vob
, line
);
1021 else if (strncmp("forced subs:", line
, 12) == 0)
1022 res
= vobsub_parse_forced_subs(vob
, line
+ 12);
1024 mp_msg(MSGT_VOBSUB
,MSGL_V
, "vobsub: ignoring %s", line
);
1028 mp_msg(MSGT_VOBSUB
,MSGL_ERR
, "ERROR in %s", line
);
1037 vobsub_parse_ifo(void* this, const char *const name
, unsigned int *palette
, unsigned int *width
, unsigned int *height
, int force
,
1038 int sid
, char *langid
)
1040 vobsub_t
*vob
= (vobsub_t
*)this;
1042 rar_stream_t
*fd
= rar_open(name
, "rb");
1045 mp_msg(MSGT_VOBSUB
,MSGL_WARN
, "VobSub: Can't open IFO file\n");
1048 unsigned char block
[0x800];
1049 const char *const ifo_magic
= "DVDVIDEO-VTS";
1050 if (rar_read(block
, sizeof(block
), 1, fd
) != 1) {
1052 mp_msg(MSGT_VOBSUB
,MSGL_ERR
, "VobSub: Can't read IFO header\n");
1053 } else if (memcmp(block
, ifo_magic
, strlen(ifo_magic
) + 1))
1054 mp_msg(MSGT_VOBSUB
,MSGL_ERR
, "VobSub: Bad magic in IFO header\n");
1056 unsigned long pgci_sector
= block
[0xcc] << 24 | block
[0xcd] << 16
1057 | block
[0xce] << 8 | block
[0xcf];
1058 int standard
= (block
[0x200] & 0x30) >> 4;
1059 int resolution
= (block
[0x201] & 0x0c) >> 2;
1060 *height
= standard
? 576 : 480;
1062 switch (resolution
) {
1077 mp_msg(MSGT_VOBSUB
,MSGL_WARN
,"Vobsub: Unknown resolution %d \n", resolution
);
1079 if (langid
&& 0 <= sid
&& sid
< 32) {
1080 unsigned char *tmp
= block
+ 0x256 + sid
* 6 + 2;
1085 if (rar_seek(fd
, pgci_sector
* sizeof(block
), SEEK_SET
)
1086 || rar_read(block
, sizeof(block
), 1, fd
) != 1)
1087 mp_msg(MSGT_VOBSUB
,MSGL_ERR
, "VobSub: Can't read IFO PGCI\n");
1090 unsigned long pgc_offset
= block
[0xc] << 24 | block
[0xd] << 16
1091 | block
[0xe] << 8 | block
[0xf];
1092 for (idx
= 0; idx
< 16; ++idx
) {
1093 unsigned char *p
= block
+ pgc_offset
+ 0xa4 + 4 * idx
;
1094 palette
[idx
] = p
[0] << 24 | p
[1] << 16 | p
[2] << 8 | p
[3];
1097 vob
->have_palette
= 1;
1107 vobsub_open(const char *const name
,const char *const ifo
,const int force
,void** spu
)
1109 vobsub_t
*vob
= malloc(sizeof(vobsub_t
));
1113 vobsubid
= vobsub_id
;
1117 vob
->have_palette
= 0;
1118 vob
->orig_frame_width
= 0;
1119 vob
->orig_frame_height
= 0;
1120 vob
->spu_streams
= NULL
;
1121 vob
->spu_streams_size
= 0;
1122 vob
->spu_streams_current
= 0;
1123 vob
->spu_valid_streams_size
= 0;
1126 buf
= malloc(strlen(name
) + 5);
1130 /* read in the info file */
1133 strcat(buf
, ".ifo");
1134 vobsub_parse_ifo(vob
,buf
, vob
->palette
, &vob
->orig_frame_width
, &vob
->orig_frame_height
, force
, -1, NULL
);
1136 vobsub_parse_ifo(vob
,ifo
, vob
->palette
, &vob
->orig_frame_width
, &vob
->orig_frame_height
, force
, -1, NULL
);
1137 /* read in the index */
1139 strcat(buf
, ".idx");
1140 fd
= rar_open(buf
, "rb");
1143 mp_msg(MSGT_VOBSUB
,MSGL_ERR
,"VobSub: Can't open IDX file\n");
1150 while (vobsub_parse_one_line(vob
, fd
) >= 0)
1154 /* if no palette in .idx then use custom colors */
1155 if ((vob
->custom
== 0)&&(vob
->have_palette
!=1))
1157 if (spu
&& vob
->orig_frame_width
&& vob
->orig_frame_height
)
1158 *spu
= spudec_new_scaled_vobsub(vob
->palette
, vob
->cuspal
, vob
->custom
, vob
->orig_frame_width
, vob
->orig_frame_height
);
1160 /* read the indexed mpeg_stream */
1162 strcat(buf
, ".sub");
1163 mpg
= mpeg_open(buf
);
1166 mp_msg(MSGT_VOBSUB
,MSGL_ERR
,"VobSub: Can't open SUB file\n");
1174 long last_pts_diff
= 0;
1175 while (!mpeg_eof(mpg
)) {
1176 off_t pos
= mpeg_tell(mpg
);
1177 if (mpeg_run(mpg
) < 0) {
1179 mp_msg(MSGT_VOBSUB
,MSGL_ERR
,"VobSub: mpeg_run error\n");
1182 if (mpg
->packet_size
) {
1183 if ((mpg
->aid
& 0xe0) == 0x20) {
1184 unsigned int sid
= mpg
->aid
& 0x1f;
1185 if (vobsub_ensure_spu_stream(vob
, sid
) >= 0) {
1186 packet_queue_t
*queue
= vob
->spu_streams
+ sid
;
1187 /* get the packet to fill */
1188 if (queue
->packets_size
== 0 && packet_queue_grow(queue
) < 0)
1190 while (queue
->current_index
+ 1 < queue
->packets_size
1191 && queue
->packets
[queue
->current_index
+ 1].filepos
<= pos
)
1192 ++queue
->current_index
;
1193 if (queue
->current_index
< queue
->packets_size
) {
1195 if (queue
->packets
[queue
->current_index
].data
) {
1196 /* insert a new packet and fix the PTS ! */
1197 packet_queue_insert(queue
);
1198 queue
->packets
[queue
->current_index
].pts100
=
1199 mpg
->pts
+ last_pts_diff
;
1201 pkt
= queue
->packets
+ queue
->current_index
;
1202 if (pkt
->pts100
!= UINT_MAX
) {
1203 if (queue
->packets_size
> 1)
1204 last_pts_diff
= pkt
->pts100
- mpg
->pts
;
1206 pkt
->pts100
= mpg
->pts
;
1207 /* FIXME: should not use mpg_sub internal informations, make a copy */
1208 pkt
->data
= mpg
->packet
;
1209 pkt
->size
= mpg
->packet_size
;
1211 mpg
->packet_reserve
= 0;
1212 mpg
->packet_size
= 0;
1217 mp_msg(MSGT_VOBSUB
,MSGL_WARN
, "don't know what to do with subtitle #%u\n", sid
);
1221 vob
->spu_streams_current
= vob
->spu_streams_size
;
1222 while (vob
->spu_streams_current
-- > 0) {
1223 vob
->spu_streams
[vob
->spu_streams_current
].current_index
= 0;
1224 if (vobsubid
== vob
->spu_streams_current
||
1225 vob
->spu_streams
[vob
->spu_streams_current
].packets_size
> 0)
1226 ++vob
->spu_valid_streams_size
;
1237 vobsub_close(void *this)
1239 vobsub_t
*vob
= (vobsub_t
*)this;
1240 if (vob
->spu_streams
) {
1241 while (vob
->spu_streams_size
--)
1242 packet_queue_destroy(vob
->spu_streams
+ vob
->spu_streams_size
);
1243 free(vob
->spu_streams
);
1249 vobsub_get_indexes_count(void *vobhandle
)
1251 vobsub_t
*vob
= (vobsub_t
*) vobhandle
;
1252 return vob
->spu_valid_streams_size
;
1256 vobsub_get_id(void *vobhandle
, unsigned int index
)
1258 vobsub_t
*vob
= (vobsub_t
*) vobhandle
;
1259 return (index
< vob
->spu_streams_size
) ? vob
->spu_streams
[index
].id
: NULL
;
1262 int vobsub_get_id_by_index(void *vobhandle
, unsigned int index
)
1264 vobsub_t
*vob
= vobhandle
;
1268 for (i
= 0, j
= 0; i
< vob
->spu_streams_size
; ++i
)
1269 if (i
== vobsubid
|| vob
->spu_streams
[i
].packets_size
> 0) {
1277 int vobsub_get_index_by_id(void *vobhandle
, int id
)
1279 vobsub_t
*vob
= vobhandle
;
1281 if (vob
== NULL
|| id
< 0 || id
>= vob
->spu_streams_size
)
1283 if (id
!= vobsubid
&& !vob
->spu_streams
[id
].packets_size
)
1285 for (i
= 0, j
= 0; i
< id
; ++i
)
1286 if (i
== vobsubid
|| vob
->spu_streams
[i
].packets_size
> 0)
1292 vobsub_get_forced_subs_flag(void const * const vobhandle
)
1295 return ((vobsub_t
*) vobhandle
)->forced_subs
;
1301 vobsub_set_from_lang(void *vobhandle
, unsigned char * lang
)
1304 vobsub_t
*vob
= (vobsub_t
*) vobhandle
;
1305 while(lang
&& strlen(lang
) >= 2){
1306 for(i
=0; i
< vob
->spu_streams_size
; i
++)
1307 if (vob
->spu_streams
[i
].id
)
1308 if ((strncmp(vob
->spu_streams
[i
].id
, lang
, 2)==0)){
1310 mp_msg(MSGT_VOBSUB
, MSGL_INFO
, "Selected VOBSUB language: %d language: %s\n", i
, vob
->spu_streams
[i
].id
);
1313 lang
+=2;while (lang
[0]==',' || lang
[0]==' ') ++lang
;
1315 mp_msg(MSGT_VOBSUB
, MSGL_WARN
, "No matching VOBSUB language found!\n");
1320 vobsub_get_packet(void *vobhandle
, float pts
,void** data
, int* timestamp
) {
1321 vobsub_t
*vob
= (vobsub_t
*)vobhandle
;
1322 unsigned int pts100
= 90000 * pts
;
1323 if (vob
->spu_streams
&& 0 <= vobsub_id
&& (unsigned) vobsub_id
< vob
->spu_streams_size
) {
1324 packet_queue_t
*queue
= vob
->spu_streams
+ vobsub_id
;
1326 int reseek_count
= 0;
1327 unsigned int lastpts
= 0;
1328 while (queue
->current_index
< queue
->packets_size
1329 && queue
->packets
[queue
->current_index
].pts100
<= pts100
) {
1330 lastpts
= queue
->packets
[queue
->current_index
].pts100
;
1331 ++queue
->current_index
;
1334 while (reseek_count
--) {
1335 --queue
->current_index
;
1336 if (queue
->packets
[queue
->current_index
-1].pts100
!= UINT_MAX
&&
1337 queue
->packets
[queue
->current_index
-1].pts100
!= lastpts
)
1341 while (queue
->current_index
< queue
->packets_size
) {
1342 packet_t
*pkt
= queue
->packets
+ queue
->current_index
;
1343 if (pkt
->pts100
!= UINT_MAX
)
1344 if (pkt
->pts100
<= pts100
) {
1345 ++queue
->current_index
;
1347 *timestamp
= pkt
->pts100
;
1351 ++queue
->current_index
;
1358 vobsub_get_next_packet(void *vobhandle
, void** data
, int* timestamp
)
1360 vobsub_t
*vob
= (vobsub_t
*)vobhandle
;
1361 if (vob
->spu_streams
&& 0 <= vobsub_id
&& (unsigned) vobsub_id
< vob
->spu_streams_size
) {
1362 packet_queue_t
*queue
= vob
->spu_streams
+ vobsub_id
;
1363 if (queue
->current_index
< queue
->packets_size
) {
1364 packet_t
*pkt
= queue
->packets
+ queue
->current_index
;
1365 ++queue
->current_index
;
1367 *timestamp
= pkt
->pts100
;
1374 void vobsub_seek(void * vobhandle
, float pts
)
1376 vobsub_t
* vob
= (vobsub_t
*)vobhandle
;
1377 packet_queue_t
* queue
;
1378 int seek_pts100
= (int)pts
* 90000;
1380 if (vob
->spu_streams
&& 0 <= vobsub_id
&& (unsigned) vobsub_id
< vob
->spu_streams_size
) {
1381 /* do not seek if we don't know the id */
1382 if (vobsub_get_id(vob
, vobsub_id
) == NULL
)
1384 queue
= vob
->spu_streams
+ vobsub_id
;
1385 queue
->current_index
= 0;
1386 while (queue
->current_index
< queue
->packets_size
1387 && (queue
->packets
+ queue
->current_index
)->pts100
< seek_pts100
)
1388 ++queue
->current_index
;
1389 if (queue
->current_index
> 0)
1390 --queue
->current_index
;
1395 vobsub_reset(void *vobhandle
)
1397 vobsub_t
*vob
= (vobsub_t
*)vobhandle
;
1398 if (vob
->spu_streams
) {
1399 unsigned int n
= vob
->spu_streams_size
;
1401 vob
->spu_streams
[n
].current_index
= 0;
1405 /**********************************************************************
1407 **********************************************************************/
1416 create_idx(vobsub_out_t
*me
, const unsigned int *palette
, unsigned int orig_width
, unsigned int orig_height
)
1420 "# VobSub index file, v7 (do not modify this line!)\n"
1422 "# Generated by MPlayer " VERSION
"\n"
1423 "# See <URL:http://www.mplayerhq.hu/> for more information about MPlayer\n"
1424 "# See <URL:http://vobsub.edensrising.com/> for more information about Vobsub\n"
1427 orig_width
, orig_height
);
1429 fputs("palette:", me
->fidx
);
1430 for (i
= 0; i
< 16; ++i
) {
1431 const double y
= palette
[i
] >> 16 & 0xff,
1432 u
= (palette
[i
] >> 8 & 0xff) - 128.0,
1433 v
= (palette
[i
] & 0xff) - 128.0;
1435 putc(',', me
->fidx
);
1436 fprintf(me
->fidx
, " %02x%02x%02x",
1437 av_clip_uint8(y
+ 1.4022 * u
),
1438 av_clip_uint8(y
- 0.3456 * u
- 0.7145 * v
),
1439 av_clip_uint8(y
+ 1.7710 * v
));
1441 putc('\n', me
->fidx
);
1444 fprintf(me
->fidx
,"# ON: displays only forced subtitles, OFF: shows everything\n"
1445 "forced subs: OFF\n");
1449 vobsub_out_open(const char *basename
, const unsigned int *palette
,
1450 unsigned int orig_width
, unsigned int orig_height
,
1451 const char *id
, unsigned int index
)
1453 vobsub_out_t
*result
= NULL
;
1455 filename
= malloc(strlen(basename
) + 5);
1457 result
= malloc(sizeof(vobsub_out_t
));
1459 result
->aid
= index
;
1460 strcpy(filename
, basename
);
1461 strcat(filename
, ".sub");
1462 result
->fsub
= fopen(filename
, "ab");
1463 if (result
->fsub
== NULL
)
1464 perror("Error: vobsub_out_open subtitle file open failed");
1465 strcpy(filename
, basename
);
1466 strcat(filename
, ".idx");
1467 result
->fidx
= fopen(filename
, "ab");
1469 if (ftell(result
->fidx
) == 0){
1470 create_idx(result
, palette
, orig_width
, orig_height
);
1471 /* Make the selected language the default language */
1472 fprintf(result
->fidx
, "\n# Language index in use\nlangidx: %u\n", index
);
1474 fprintf(result
->fidx
, "\nid: %s, index: %u\n", id
? id
: "xx", index
);
1475 /* So that we can check the file now */
1476 fflush(result
->fidx
);
1479 perror("Error: vobsub_out_open index file open failed");
1487 vobsub_out_close(void *me
)
1489 vobsub_out_t
*vob
= (vobsub_out_t
*)me
;
1498 vobsub_out_output(void *me
, const unsigned char *packet
, int len
, double pts
)
1500 static double last_pts
;
1501 static int last_pts_set
= 0;
1502 vobsub_out_t
*vob
= (vobsub_out_t
*)me
;
1504 /* Windows' Vobsub require that every packet is exactly 2kB long */
1505 unsigned char buffer
[2048];
1508 /* Do not output twice a line with the same timestamp, this
1509 breaks Windows' Vobsub */
1510 if (vob
->fidx
&& (!last_pts_set
|| last_pts
!= pts
)) {
1511 static unsigned int last_h
= 9999, last_m
= 9999, last_s
= 9999, last_ms
= 9999;
1512 unsigned int h
, m
, ms
;
1519 ms
= (s
- (unsigned int) s
) * 1000;
1520 if (ms
>= 1000) /* prevent overfolws or bad float stuff */
1522 if (h
!= last_h
|| m
!= last_m
|| (unsigned int) s
!= last_s
|| ms
!= last_ms
) {
1523 fprintf(vob
->fidx
, "timestamp: %02u:%02u:%02u:%03u, filepos: %09lx\n",
1524 h
, m
, (unsigned int) s
, ms
, ftell(vob
->fsub
));
1527 last_s
= (unsigned int) s
;
1534 /* Packet start code: Windows' Vobsub needs this */
1536 *p
++ = 0; /* 0x00 */
1544 static unsigned char last_pts
[5] = { 0, 0, 0, 0, 0};
1545 unsigned char now_pts
[5];
1546 int pts_len
, pad_len
, datalen
= len
;
1548 now_pts
[0] = 0x21 | (((unsigned long)pts
>> 29) & 0x0e);
1549 now_pts
[1] = ((unsigned long)pts
>> 22) & 0xff;
1550 now_pts
[2] = 0x01 | (((unsigned long)pts
>> 14) & 0xfe);
1551 now_pts
[3] = ((unsigned long)pts
>> 7) & 0xff;
1552 now_pts
[4] = 0x01 | (((unsigned long)pts
<< 1) & 0xfe);
1553 pts_len
= memcmp(last_pts
, now_pts
, sizeof(now_pts
)) ? sizeof(now_pts
) : 0;
1554 memcpy(last_pts
, now_pts
, sizeof(now_pts
));
1556 datalen
+= 3; /* Version, PTS_flags, pts_len */
1558 datalen
+= 1; /* AID */
1559 pad_len
= 2048 - (p
- buffer
) - 4 /* MPEG ID */ - 2 /* payload len */ - datalen
;
1560 /* XXX - Go figure what should go here! In any case the
1561 packet has to be completly filled. If I can fill it
1562 with padding (0x000001be) latter I'll do that. But if
1563 there is only room for 6 bytes then I can not write a
1564 padding packet. So I add some padding in the PTS
1565 field. This looks like a dirty kludge. Oh well... */
1567 /* Packet is too big. Let's try ommiting the PTS field */
1572 else if (pad_len
> 6)
1576 *p
++ = 0; /* 0x0e */
1581 *p
++ = (datalen
>> 8) & 0xff; /* length of payload */
1582 *p
++ = datalen
& 0xff;
1583 *p
++ = 0x80; /* System-2 (.VOB) stream */
1584 *p
++ = pts_len
? 0x80 : 0x00; /* pts_flags */
1585 *p
++ = pts_len
+ pad_len
;
1586 memcpy(p
, now_pts
, pts_len
);
1588 memset(p
, 0, pad_len
);
1591 *p
++ = 0x20 | vob
->aid
; /* aid */
1592 if (fwrite(buffer
, p
- buffer
, 1, vob
->fsub
) != 1
1593 || fwrite(packet
, len
, 1, vob
->fsub
) != 1)
1594 perror("ERROR: vobsub write failed");
1596 remain
-= p
- buffer
+ len
;
1605 *p
++ = (remain
- 6) >> 8;
1606 *p
++ = (remain
- 6) & 0xff;
1607 /* for better compression, blank this */
1608 memset(buffer
+ 6, 0, remain
- (p
- buffer
));
1609 if (fwrite(buffer
, remain
, 1, vob
->fsub
) != 1)
1610 perror("ERROR: vobsub padding write failed");
1612 else if (remain
> 0) {
1613 /* I don't know what to output. But anyway the block
1614 needs to be 2KB big */
1615 memset(buffer
, 0, remain
);
1616 if (fwrite(buffer
, remain
, 1, vob
->fsub
) != 1)
1617 perror("ERROR: vobsub blank padding write failed");
1619 else if (remain
< 0)
1621 "\nERROR: wrong thing happenned...\n"
1622 " I wrote a %i data bytes spu packet and that's too long\n", len
);