2 * Use with CVS JOCR/GOCR.
4 * You will have to change 'vobsub_id' value if you want another subtitle than number 0.
6 * HINT: you can view the subtitle that is being decoded with "display subtitle-*.pgm"
10 /* Make sure this accesses the CVS version of JOCR/GOCR */
11 #define GOCR_PROGRAM "gocr"
18 #include <sys/types.h>
20 #include "libvo/video_out.h"
24 void guiMessageBox(int level
, char * str
) {};
26 /* XXX Kludge ahead, this MUST be the same as the definitions found in ../spudec.c */
27 typedef struct packet_t packet_t
;
29 unsigned char *packet
;
30 unsigned int palette
[4];
31 unsigned int alpha
[4];
32 unsigned int control_start
; /* index of start of control data */
33 unsigned int current_nibble
[2]; /* next data nibble (4 bits) to be
34 processed (for RLE decoding) for
36 int deinterlace_oddness
; /* 0 or 1, index into current_nibble */
37 unsigned int start_col
, end_col
;
38 unsigned int start_row
, end_row
;
39 unsigned int width
, height
, stride
;
40 unsigned int start_pts
, end_pts
;
46 unsigned int global_palette
[16];
47 unsigned int orig_frame_width
, orig_frame_height
;
48 unsigned char* packet
;
49 size_t packet_reserve
; /* size of the memory pointed to by packet */
50 unsigned int packet_offset
; /* end of the currently assembled fragment */
51 unsigned int packet_size
; /* size of the packet once all fragments are assembled */
52 unsigned int packet_pts
; /* PTS for this packet */
53 unsigned int palette
[4];
54 unsigned int alpha
[4];
55 unsigned int cuspal
[4];
58 unsigned int start_pts
, end_pts
;
59 unsigned int start_col
, end_col
;
60 unsigned int start_row
, end_row
;
61 unsigned int width
, height
, stride
;
62 size_t image_size
; /* Size of the image buffer */
63 unsigned char *image
; /* Grayscale value */
64 unsigned char *aimage
; /* Alpha value */
65 unsigned int scaled_frame_width
, scaled_frame_height
;
66 unsigned int scaled_start_col
, scaled_start_row
;
67 unsigned int scaled_width
, scaled_height
, scaled_stride
;
68 size_t scaled_image_size
;
69 unsigned char *scaled_image
;
70 unsigned char *scaled_aimage
;
71 int auto_palette
; /* 1 if we lack a palette and must use an heuristic. */
72 int font_start_level
; /* Darkest value used for the computed font */
73 const vo_functions_t
*hw_spu
;
83 static spudec_handle_t
*spudec
;
84 static FILE *fsub
= NULL
;
85 static unsigned int sub_idx
= 0;
88 process_gocr_output(const char *const fname
, unsigned int start
, unsigned int end
)
91 int temp
, h
, m
, s
, ms
;
93 file
= fopen(fname
, "r");
95 perror("fopen failed");
107 fprintf(fsub
, "%d\n%02d:%02d:%02d,%03d --> ", ++sub_idx
, h
, m
, s
, ms
);
117 fprintf(fsub
, "%02d:%02d:%02d,%03d\n", h
, m
, s
, ms
);
119 while ((c
= getc(file
)) != EOF
) {
137 output_pgm(FILE *f
, int w
, int h
, unsigned char *src
, unsigned char *srca
, int stride
)
145 for (y
= 0; y
< h
; ++y
) {
146 for (x
= 0; x
< w
; ++x
) {
149 res
= src
[x
] * (256 - srca
[x
]);
152 res
= (65535 - res
) >> 8;
163 draw_alpha(int x0
, int y0
, int w
, int h
, unsigned char *src
, unsigned char *srca
, int stride
)
169 const char *const tmpfname
= tmpnam(NULL
);
170 sprintf(buf
, "subtitle-%d-%d.pgm", spudec
->start_pts
/ 90, spudec
->end_pts
/ 90);
172 output_pgm(f
, w
, h
, src
, srca
, stride
);
174 /* see <URL:http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/subtitleripper/subtitleripper/src/README.gocr?rev=HEAD&content-type=text/vnd.viewcvs-markup> */
175 sprintf(cmd
, GOCR_PROGRAM
" -v 1 -s 7 -d 0 -m 130 -m 256 -m 32 -i %s -o %s", buf
, tmpfname
);
176 cmdres
= system(cmd
);
178 perror("system failed");
182 fprintf(stderr
, GOCR_PROGRAM
" returned %d\n", cmdres
);
185 process_gocr_output(tmpfname
, spudec
->start_pts
, spudec
->end_pts
);
191 main(int argc
, char **argv
)
193 const char *vobsubname
, *subripname
;
199 if (argc
< 2 || 4 < argc
) {
200 fprintf(stderr
, "Usage: %s <vobsub basename> [<subid> [<output filename>] ]\n", argv
[0]);
203 vobsubname
= argv
[1];
207 vobsub_id
= atoi(argv
[2]);
209 subripname
= argv
[3];
210 fsub
= fopen(subripname
, "w");
213 vobsub
= vobsub_open(vobsubname
, NULL
, 0, &spudec
);
214 while ((packet_len
=vobsub_get_next_packet(vobsub
, &packet
, &pts100
)) >= 0) {
215 spudec_assemble(spudec
, packet
, packet_len
, pts100
);
216 if (spudec
->queue_head
) {
217 spudec_heartbeat(spudec
, spudec
->queue_head
->start_pts
);
218 if (spudec_changed(spudec
))
219 spudec_draw(spudec
, draw_alpha
);
224 vobsub_close(vobsub
);