forked from HandBrake/HandBrake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeccc608sub.c
1867 lines (1738 loc) · 59 KB
/
deccc608sub.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* deccc608sub.c
Copyright (c) 2003-2019 HandBrake Team
This file is part of the HandBrake source code
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License v2.
For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html
*/
/*
* From ccextractor, leave this file as intact and close to the original as possible so that
* it is easy to patch in fixes - even though this file contains code that we don't need.
*
* Note that the SRT sub generation from CC could be useful for mkv subs.
*/
#include "hb.h"
#include "deccc608sub.h"
#define SSA_PREAMBLE_LEN 24
/*
* ccextractor static configuration variables.
*/
static int debug_608 = 0;
static int cc_channel = 1;
static int subs_delay = 0;
int rowdata[] = {11,-1,1,2,3,4,12,13,14,15,5,6,7,8,9,10};
// Relationship between the first PAC byte and the row number
// The following enc_buffer is not used at the moment, if it does get used
// we need to bring it into the swrite struct. Same for "str".
#define INITIAL_ENC_BUFFER_CAPACITY 2048
static const unsigned char pac2_attribs[][3]= // Color, font, ident
{
{COL_WHITE, FONT_REGULAR, 0}, // 0x40 || 0x60
{COL_WHITE, FONT_UNDERLINED, 0}, // 0x41 || 0x61
{COL_GREEN, FONT_REGULAR, 0}, // 0x42 || 0x62
{COL_GREEN, FONT_UNDERLINED, 0}, // 0x43 || 0x63
{COL_BLUE, FONT_REGULAR, 0}, // 0x44 || 0x64
{COL_BLUE, FONT_UNDERLINED, 0}, // 0x45 || 0x65
{COL_CYAN, FONT_REGULAR, 0}, // 0x46 || 0x66
{COL_CYAN, FONT_UNDERLINED, 0}, // 0x47 || 0x67
{COL_RED, FONT_REGULAR, 0}, // 0x48 || 0x68
{COL_RED, FONT_UNDERLINED, 0}, // 0x49 || 0x69
{COL_YELLOW, FONT_REGULAR, 0}, // 0x4a || 0x6a
{COL_YELLOW, FONT_UNDERLINED, 0}, // 0x4b || 0x6b
{COL_MAGENTA, FONT_REGULAR, 0}, // 0x4c || 0x6c
{COL_MAGENTA, FONT_UNDERLINED, 0}, // 0x4d || 0x6d
{COL_WHITE, FONT_ITALICS, 0}, // 0x4e || 0x6e
{COL_WHITE, FONT_UNDERLINED_ITALICS, 0}, // 0x4f || 0x6f
{COL_WHITE, FONT_REGULAR, 0}, // 0x50 || 0x70
{COL_WHITE, FONT_UNDERLINED, 0}, // 0x51 || 0x71
{COL_WHITE, FONT_REGULAR, 4}, // 0x52 || 0x72
{COL_WHITE, FONT_UNDERLINED, 4}, // 0x53 || 0x73
{COL_WHITE, FONT_REGULAR, 8}, // 0x54 || 0x74
{COL_WHITE, FONT_UNDERLINED, 8}, // 0x55 || 0x75
{COL_WHITE, FONT_REGULAR, 12}, // 0x56 || 0x76
{COL_WHITE, FONT_UNDERLINED, 12}, // 0x57 || 0x77
{COL_WHITE, FONT_REGULAR, 16}, // 0x58 || 0x78
{COL_WHITE, FONT_UNDERLINED, 16}, // 0x59 || 0x79
{COL_WHITE, FONT_REGULAR, 20}, // 0x5a || 0x7a
{COL_WHITE, FONT_UNDERLINED, 20}, // 0x5b || 0x7b
{COL_WHITE, FONT_REGULAR, 24}, // 0x5c || 0x7c
{COL_WHITE, FONT_UNDERLINED, 24}, // 0x5d || 0x7d
{COL_WHITE, FONT_REGULAR, 28}, // 0x5e || 0x7e
{COL_WHITE, FONT_UNDERLINED, 28} // 0x5f || 0x7f
};
// Default color
static enum color_code default_color=COL_WHITE;
static const char *command_type[] =
{
"Unknown",
"EDM - EraseDisplayedMemory",
"RCL - ResumeCaptionLoading",
"EOC - End Of Caption",
"TO1 - Tab Offset, 1 column",
"TO2 - Tab Offset, 2 column",
"TO3 - Tab Offset, 3 column",
"RU2 - Roll up 2 rows",
"RU3 - Roll up 3 rows",
"RU4 - Roll up 4 rows",
"CR - Carriage Return",
"ENM - Erase non-displayed memory",
"BS - Backspace",
"RTD - Resume Text Display"
};
static const char *font_text[]=
{
"regular",
"italics",
"underlined",
"underlined italics"
};
static const char *color_text[][2]=
{
{"white", "&HFFFFFF&"},
{"green", "&H00FF00&"},
{"blue", "&HFF0000&"},
{"cyan", "&HFFFF00&"},
{"red", "&H0000FF&"},
{"yellow", "&H00FFFF&"},
{"magenta", "&HFF00FF&"},
{"userdefined", "&HFFFFFF&"}
};
static int general_608_init (struct s_write *wb)
{
if( !wb->enc_buffer )
{
wb->enc_buffer=(unsigned char *) malloc (INITIAL_ENC_BUFFER_CAPACITY);
if (wb->enc_buffer==NULL)
return -1;
wb->enc_buffer_capacity=INITIAL_ENC_BUFFER_CAPACITY;
}
if( !wb->subline) {
wb->subline = malloc(2048);
if (!wb->subline)
{
return -1;
}
}
wb->new_sentence = 1;
wb->new_channel = 1;
wb->in_xds_mode = 0;
hb_buffer_list_clear(&wb->list);
wb->last_pts = 0;
wb->last_scr_sequence = 0;
return 0;
}
/*
* Free up CC memory - don't call this from HB just yet since it will cause
* parallel encodes to fail - to be honest they will be stuffed anyway since
* the CC's may be overwriting the buffers.
*/
static void general_608_close (struct s_write *wb)
{
if( wb->enc_buffer ) {
free(wb->enc_buffer);
wb->enc_buffer_capacity = 0;
wb->enc_buffer_used = 0;
}
if( wb->subline ) {
free(wb->subline);
}
hb_buffer_list_close(&wb->list);
}
#include <ctype.h>
// Returns number of bytes used
static int get_char_in_utf8(unsigned char *buffer, unsigned char c)
{
if (c == 0x00)
return 0;
// Regular line-21 character set, mostly ASCII except these exceptions
if (c < 0x80)
{
switch (c)
{
case 0x2a: // lowercase a, acute accent
*buffer = 0xc3;
*(buffer+1) = 0xa1;
return 2;
case 0x5c: // lowercase e, acute accent
*buffer = 0xc3;
*(buffer+1) = 0xa9;
return 2;
case 0x5e: // lowercase i, acute accent
*buffer = 0xc3;
*(buffer+1) = 0xad;
return 2;
case 0x5f: // lowercase o, acute accent
*buffer = 0xc3;
*(buffer+1) = 0xb3;
return 2;
case 0x60: // lowercase u, acute accent
*buffer = 0xc3;
*(buffer+1) = 0xba;
return 2;
case 0x7b: // lowercase c with cedilla
*buffer = 0xc3;
*(buffer+1) = 0xa7;
return 2;
case 0x7c: // division symbol
*buffer = 0xc3;
*(buffer+1) = 0xb7;
return 2;
case 0x7d: // uppercase N tilde
*buffer = 0xc3;
*(buffer+1) = 0x91;
return 2;
case 0x7e: // lowercase n tilde
*buffer = 0xc3;
*(buffer+1) = 0xb1;
return 2;
default:
*buffer = c;
return 1;
}
}
switch (c)
{
// THIS BLOCK INCLUDES THE 16 EXTENDED (TWO-BYTE) LINE 21 CHARACTERS
// THAT COME FROM HI BYTE = 0x11 AND LOW BETWEEN 0x30 AND 0x3F
case 0x80: // Registered symbol (R)
*buffer = 0xc2;
*(buffer+1) = 0xae;
return 2;
case 0x81: // degree sign
*buffer = 0xc2;
*(buffer+1) = 0xb0;
return 2;
case 0x82: // 1/2 symbol
*buffer = 0xc2;
*(buffer+1) = 0xbd;
return 2;
case 0x83: // Inverted (open) question mark
*buffer = 0xc2;
*(buffer+1) = 0xbf;
return 2;
case 0x84: // Trademark symbol (TM)
*buffer = 0xe2;
*(buffer+1) = 0x84;
*(buffer+2) = 0xa2;
return 3;
case 0x85: // Cents symbol
*buffer = 0xc2;
*(buffer+1) = 0xa2;
return 2;
case 0x86: // Pounds sterling
*buffer = 0xc2;
*(buffer+1) = 0xa3;
return 2;
case 0x87: // Music note
*buffer = 0xe2;
*(buffer+1) = 0x99;
*(buffer+2) = 0xaa;
return 3;
case 0x88: // lowercase a, grave accent
*buffer = 0xc3;
*(buffer+1) = 0xa0;
return 2;
case 0x89: // transparent space, we make it regular
*buffer = 0x20;
return 1;
case 0x8a: // lowercase e, grave accent
*buffer = 0xc3;
*(buffer+1) = 0xa8;
return 2;
case 0x8b: // lowercase a, circumflex accent
*buffer = 0xc3;
*(buffer+1) = 0xa2;
return 2;
case 0x8c: // lowercase e, circumflex accent
*buffer = 0xc3;
*(buffer+1) = 0xaa;
return 2;
case 0x8d: // lowercase i, circumflex accent
*buffer = 0xc3;
*(buffer+1) = 0xae;
return 2;
case 0x8e: // lowercase o, circumflex accent
*buffer = 0xc3;
*(buffer+1) = 0xb4;
return 2;
case 0x8f: // lowercase u, circumflex accent
*buffer = 0xc3;
*(buffer+1) = 0xbb;
return 2;
// THIS BLOCK INCLUDES THE 32 EXTENDED (TWO-BYTE) LINE 21 CHARACTERS
// THAT COME FROM HI BYTE = 0x12 AND LOW BETWEEN 0x20 AND 0x3F
case 0x90: // capital letter A with acute
*buffer = 0xc3;
*(buffer+1) = 0x81;
return 2;
case 0x91: // capital letter E with acute
*buffer = 0xc3;
*(buffer+1) = 0x89;
return 2;
case 0x92: // capital letter O with acute
*buffer = 0xc3;
*(buffer+1) = 0x93;
return 2;
case 0x93: // capital letter U with acute
*buffer = 0xc3;
*(buffer+1) = 0x9a;
return 2;
case 0x94: // capital letter U with diaeresis
*buffer = 0xc3;
*(buffer+1) = 0x9c;
return 2;
case 0x95: // lowercase letter U with diaeresis
*buffer = 0xc3;
*(buffer+1) = 0xbc;
return 2;
case 0x96: // apostrophe
*buffer = 0x27;
return 1;
case 0x97: // inverted exclamation mark
*buffer = 0xc2;
*(buffer+1) = 0xa1;
return 2;
case 0x98: // asterisk
*buffer = 0x2a;
return 1;
case 0x99: // apostrophe (yes, duped). See CCADI source code.
*buffer = 0x27;
return 1;
case 0x9a: // hyphen-minus
*buffer = 0x2d;
return 1;
case 0x9b: // copyright sign
*buffer = 0xc2;
*(buffer+1) = 0xa9;
return 2;
case 0x9c: // Service mark
*buffer = 0xe2;
*(buffer+1) = 0x84;
*(buffer+2) = 0xa0;
return 3;
case 0x9d: // Full stop (.)
*buffer = 0x2e;
return 1;
case 0x9e: // Quotation mark
*buffer = 0x22;
return 1;
case 0x9f: // Quotation mark
*buffer = 0x22;
return 1;
case 0xa0: // uppercase A, grave accent
*buffer = 0xc3;
*(buffer+1) = 0x80;
return 2;
case 0xa1: // uppercase A, circumflex
*buffer = 0xc3;
*(buffer+1) = 0x82;
return 2;
case 0xa2: // uppercase C with cedilla
*buffer = 0xc3;
*(buffer+1) = 0x87;
return 2;
case 0xa3: // uppercase E, grave accent
*buffer = 0xc3;
*(buffer+1) = 0x88;
return 2;
case 0xa4: // uppercase E, circumflex
*buffer = 0xc3;
*(buffer+1) = 0x8a;
return 2;
case 0xa5: // capital letter E with diaeresis
*buffer = 0xc3;
*(buffer+1) = 0x8b;
return 2;
case 0xa6: // lowercase letter e with diaeresis
*buffer = 0xc3;
*(buffer+1) = 0xab;
return 2;
case 0xa7: // uppercase I, circumflex
*buffer = 0xc3;
*(buffer+1) = 0x8e;
return 2;
case 0xa8: // uppercase I, with diaeresis
*buffer = 0xc3;
*(buffer+1) = 0x8f;
return 2;
case 0xa9: // lowercase i, with diaeresis
*buffer = 0xc3;
*(buffer+1) = 0xaf;
return 2;
case 0xaa: // uppercase O, circumflex
*buffer = 0xc3;
*(buffer+1) = 0x94;
return 2;
case 0xab: // uppercase U, grave accent
*buffer = 0xc3;
*(buffer+1) = 0x99;
return 2;
case 0xac: // lowercase u, grave accent
*buffer = 0xc3;
*(buffer+1) = 0xb9;
return 2;
case 0xad: // uppercase U, circumflex
*buffer = 0xc3;
*(buffer+1) = 0x9b;
return 2;
case 0xae: // LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
*buffer = 0xc2;
*(buffer+1) = 0xab;
return 2;
case 0xaf: // RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
*buffer = 0xc2;
*(buffer+1) = 0xbb;
return 2;
// THIS BLOCK INCLUDES THE 32 EXTENDED (TWO-BYTE) LINE 21 CHARACTERS
// THAT COME FROM HI BYTE = 0x13 AND LOW BETWEEN 0x20 AND 0x3F
case 0xb0: // Uppercase A, tilde
*buffer = 0xc3;
*(buffer+1) = 0x83;
return 2;
case 0xb1: // Lowercase a, tilde
*buffer = 0xc3;
*(buffer+1) = 0xa3;
return 2;
case 0xb2: // Uppercase I, acute accent
*buffer = 0xc3;
*(buffer+1) = 0x8d;
return 2;
case 0xb3: // Uppercase I, grave accent
*buffer = 0xc3;
*(buffer+1) = 0x8c;
return 2;
case 0xb4: // Lowercase i, grave accent
*buffer = 0xc3;
*(buffer+1) = 0xac;
return 2;
case 0xb5: // Uppercase O, grave accent
*buffer = 0xc3;
*(buffer+1) = 0x92;
return 2;
case 0xb6: // Lowercase o, grave accent
*buffer = 0xc3;
*(buffer+1) = 0xb2;
return 2;
case 0xb7: // Uppercase O, tilde
*buffer = 0xc3;
*(buffer+1) = 0x95;
return 2;
case 0xb8: // Lowercase o, tilde
*buffer = 0xc3;
*(buffer+1) = 0xb5;
return 2;
case 0xb9: // Open curly brace
*buffer = 0x7b;
return 1;
case 0xba: // Closing curly brace
*buffer = 0x7d;
return 1;
case 0xbb: // Backslash
*buffer = 0x5c;
return 1;
case 0xbc: // Caret
*buffer = 0x5e;
return 1;
case 0xbd: // Underscore
*buffer = 0x5f;
return 1;
case 0xbe: // Pipe (broken bar)
*buffer = 0xc2;
*(buffer+1) = 0xa6;
return 1;
case 0xbf: // Tilde
*buffer = 0x7e; // Not sure
return 1;
case 0xc0: // Uppercase A, umlaut
*buffer = 0xc3;
*(buffer+1) = 0x84;
return 2;
case 0xc1: // Lowercase A, umlaut
*buffer = 0xc3;
*(buffer+1) = 0xa4;
return 2;
case 0xc2: // Uppercase O, umlaut
*buffer = 0xc3;
*(buffer+1) = 0x96;
return 2;
case 0xc3: // Lowercase o, umlaut
*buffer = 0xc3;
*(buffer+1) = 0xb6;
return 2;
case 0xc4: // Esszett (sharp S)
*buffer = 0xc3;
*(buffer+1) = 0x9f;
return 2;
case 0xc5: // Yen symbol
*buffer = 0xc2;
*(buffer+1) = 0xa5;
return 2;
case 0xc6: // Currency symbol
*buffer = 0xc2;
*(buffer+1) = 0xa4;
return 2;
case 0xc7: // Vertical bar
*buffer = 0x7c;
return 1;
case 0xc8: // Uppercase A, ring
*buffer = 0xc3;
*(buffer+1) = 0x85;
return 2;
case 0xc9: // Lowercase A, ring
*buffer = 0xc3;
*(buffer+1) = 0xa5;
return 2;
case 0xca: // Uppercase O, slash
*buffer = 0xc3;
*(buffer+1) = 0x98;
return 2;
case 0xcb: // Lowercase o, slash
*buffer = 0xc3;
*(buffer+1) = 0xb8;
return 2;
case 0xcc: // Upper left corner
*buffer = 0xe2;
*(buffer+1) = 0x8c;
*(buffer+2) = 0x9c;
return 3;
case 0xcd: // Upper right corner
*buffer = 0xe2;
*(buffer+1) = 0x8c;
*(buffer+2) = 0x9d;
return 3;
case 0xce: // Lower left corner
*buffer = 0xe2;
*(buffer+1) = 0x8c;
*(buffer+2) = 0x9e;
return 3;
case 0xcf: // Lower right corner
*buffer = 0xe2;
*(buffer+1) = 0x8c;
*(buffer+2) = 0x9f;
return 3;
default: //
*buffer = '?'; // I'll do it eventually, I promise
return 1; // This are weird chars anyway
}
}
// Encodes a generic string. Note that since we use the encoders for closed
// caption data, text would have to be encoded as CCs... so using special
// characters here it's a bad idea.
static unsigned encode_line(unsigned char *buffer, unsigned char *text)
{
unsigned bytes = 0;
while (*text)
{
*buffer++ = *text++;
bytes++;
}
return bytes;
}
static unsigned stuff_space(unsigned char *buffer, int space)
{
int ii;
for (ii = 0; ii < space; ii++)
{
*buffer++ = '\\';
*buffer++ = 'h';
}
return space * 2;
}
static void find_limit_characters(unsigned char *line, int *first_non_blank,
int *last_non_blank)
{
int i;
*last_non_blank = -1;
*first_non_blank = -1;
for (i = 0; i < CC608_SCREEN_WIDTH; i++)
{
unsigned char c = line[i];
if (c != ' ' && c != 0x89)
{
if (*first_non_blank == -1)
*first_non_blank = i;
*last_non_blank = i;
}
}
}
static unsigned get_decoder_line_encoded(struct s_write *wb,
unsigned char *buffer, int line_num,
struct eia608_screen *data)
{
uint8_t font_style;
uint8_t font_color;
int i;
unsigned char *line = data->characters[line_num];
unsigned char *orig = buffer; // Keep for debugging
int first = 0, last = 31;
find_limit_characters(line, &first, &last);
for (i = first; i <= last; i++)
{
// Handle color
font_color = data->colors[line_num][i];
font_style = data->fonts[line_num][i];
// Handle reset to defaults
if ((font_style & FONT_STYLE_MASK) == 0 && font_color == COL_WHITE)
{
if (((font_style ^ wb->prev_font_style) & FONT_STYLE_MASK) ||
(font_color != wb->prev_font_color))
{
buffer += encode_line(buffer, (uint8_t*)"{\\r}");
}
}
else
{
// Open markup
if (((font_style ^ wb->prev_font_style) & FONT_STYLE_MASK) ||
(font_color != wb->prev_font_color))
{
// style changed
buffer += encode_line(buffer, (uint8_t*)"{");
}
// Handle underlined
if ((font_style ^ wb->prev_font_style) & FONT_UNDERLINED)
{
int enable = !!(font_style & FONT_UNDERLINED);
buffer += encode_line(buffer, (uint8_t*)"\\u");
*buffer++ = enable + 0x30;
}
// Handle italics
if ((font_style ^ wb->prev_font_style) & FONT_ITALICS)
{
int enable = !!(font_style & FONT_ITALICS);
buffer += encode_line(buffer, (uint8_t*)"\\i");
*buffer++ = enable + 0x30;
}
// Handle color
if (font_color != wb->prev_font_color)
{
buffer += encode_line(buffer, (uint8_t*)"\\1c");
buffer += encode_line(buffer,
(uint8_t*)color_text[font_color][1]);
}
// Close markup
if (((font_style ^ wb->prev_font_style) & FONT_STYLE_MASK) ||
(font_color != wb->prev_font_color))
{
// style changed
buffer += encode_line(buffer, (uint8_t*)"}");
}
}
wb->prev_font_style = font_style;
wb->prev_font_color = font_color;
int bytes = 0;
bytes = get_char_in_utf8(buffer, line[i]);
buffer += bytes;
}
*buffer = 0;
return (unsigned) (buffer - orig); // Return length
}
static void clear_eia608_cc_buffer (struct eia608_screen *data)
{
int i;
for (i=0;i<15;i++)
{
memset(data->characters[i],' ',CC608_SCREEN_WIDTH);
data->characters[i][CC608_SCREEN_WIDTH]=0;
memset (data->colors[i],default_color,CC608_SCREEN_WIDTH+1);
memset (data->fonts[i],FONT_REGULAR,CC608_SCREEN_WIDTH+1);
data->row_used[i]=0;
}
data->empty=1;
}
static void init_eia608 (struct eia608 *data)
{
data->cursor_column = 0;
data->cursor_row = 0;
clear_eia608_cc_buffer (&data->buffer1);
clear_eia608_cc_buffer (&data->buffer2);
data->visible_buffer = 1;
data->last_c1 = 0;
data->last_c2 = 0;
data->mode = MODE_POPUP;
data->current_visible_start_ms = 0;
data->ssa_counter = 0;
data->screenfuls_counter = 0;
data->channel = 1;
data->color = default_color;
data->font = FONT_REGULAR;
data->rollup_base_row = 14;
}
static struct eia608_screen *get_current_hidden_buffer(struct s_write *wb)
{
struct eia608_screen *data;
if (wb->data608->visible_buffer == 1)
data = &wb->data608->buffer2;
else
data = &wb->data608->buffer1;
return data;
}
static struct eia608_screen *get_current_visible_buffer(struct s_write *wb)
{
struct eia608_screen *data;
if (wb->data608->visible_buffer == 1)
data = &wb->data608->buffer1;
else
data = &wb->data608->buffer2;
return data;
}
static void swap_visible_buffer(struct s_write *wb)
{
wb->data608->visible_buffer = (wb->data608->visible_buffer == 1) ? 2 : 1;
}
static struct eia608_screen *get_writing_buffer(struct s_write *wb)
{
struct eia608_screen *use_buffer=NULL;
switch (wb->data608->mode)
{
case MODE_POPUP: // Write on the non-visible buffer
use_buffer = get_current_hidden_buffer(wb);
break;
case MODE_ROLLUP_2: // Write directly to screen
case MODE_ROLLUP_3:
case MODE_ROLLUP_4:
case MODE_TEXT:
use_buffer = get_current_visible_buffer(wb);
break;
default:
hb_error("Caption mode has an illegal value at get_writing_buffer(), this is a bug.");
}
return use_buffer;
}
static void write_char(const unsigned char c, struct s_write *wb)
{
if (wb->data608->mode != MODE_TEXT)
{
struct eia608_screen * use_buffer = get_writing_buffer(wb);
if (use_buffer != NULL)
{
/* hb_log ("\rWriting char [%c] at %s:%d:%d\n",c,
use_buffer == &wb->data608->buffer1?"B1":"B2",
wb->data608->cursor_row,wb->data608->cursor_column); */
use_buffer->characters[wb->data608->cursor_row][wb->data608->cursor_column] = c;
use_buffer->colors[wb->data608->cursor_row][wb->data608->cursor_column] = wb->data608->color;
use_buffer->fonts[wb->data608->cursor_row][wb->data608->cursor_column] = wb->data608->font;
use_buffer->row_used[wb->data608->cursor_row] = 1;
use_buffer->empty = 0;
if (wb->data608->cursor_column < 31)
wb->data608->cursor_column++;
use_buffer->dirty = 1;
}
}
}
/* Handle MID-ROW CODES. */
static void handle_text_attr(const unsigned char c1, const unsigned char c2,
struct s_write *wb)
{
// Handle channel change
wb->data608->channel=wb->new_channel;
if (wb->data608->channel!=cc_channel)
return;
if (debug_608)
hb_log ("\r608: text_attr: %02X %02X",c1,c2);
if ( ((c1!=0x11 && c1!=0x19) ||
(c2<0x20 || c2>0x2f)) && debug_608)
{
hb_log ("\rThis is not a text attribute!\n");
}
else
{
int i = c2-0x20;
wb->data608->color=pac2_attribs[i][0];
wb->data608->font=pac2_attribs[i][1];
if (debug_608)
hb_log(" -- Color: %s, font: %s\n",
color_text[wb->data608->color][0],
font_text[wb->data608->font]);
if (wb->data608->cursor_column<31)
wb->data608->cursor_column++;
}
}
static int write_cc_buffer_as_ssa(struct eia608_screen *data,
struct s_write *wb)
{
int wrote_something = 0;
int i;
int64_t ms_start = wb->data608->current_visible_start_ms;
//int64_t ms_end = wb->last_pts + subs_delay;
ms_start += subs_delay;
if (ms_start<0) // Drop screens that because of subs_delay start too early
return 0;
if (debug_608)
{
char timeline[128];
wb->data608->ssa_counter++;
sprintf (timeline,"%u\r\n",wb->data608->ssa_counter);
hb_log ("\n- - - SSA caption - - -\n");
hb_log ("%s", timeline);
}
/*
* Write all the lines into enc_buffer, and then write that out at the end
* ensure that we only have two lines, insert a newline after the first one,
* and have a big bottom line (strip spaces from any joined lines).
*/
int rows = 0, columns = 0;
int min_row = 15, max_row = 0;
int min_col = 41, max_col = 0;
for (i = 0; i < 15; i++)
{
if (data->row_used[i])
{
int first, last;
rows++;
find_limit_characters(data->characters[i], &first, &last);
if (last - first + 1 > columns)
columns = last - first + 1;
if (min_col > first)
min_col = first;
if (min_row > i)
min_row = i;
if (max_col < last)
max_col = last;
if (max_row < i)
max_row = i;
}
}
wb->prev_font_style = FONT_REGULAR;
wb->prev_font_color = COL_WHITE;
wb->enc_buffer_used = 0;
int cropped_width, cropped_height, font_size;
int cell_width, cell_height;
int safe_x, safe_y;
int min_safe_x, min_safe_y;
double aspect;
cropped_height = wb->height - wb->crop[0] - wb->crop[1];
cropped_width = wb->width - wb->crop[2] - wb->crop[3];
aspect = (double)wb->width * wb->par.num /
(wb->height * wb->par.den);
// CC grid is 16 rows by 32 columns (for 4:3 video)
// Our SSA resolution is the title resolution
// Translate CC grid to SSA coordinates
// The numbers are tweaked to keep things off the very
// edges of the screen and in the "safe" zone
int screen_columns = 32;
if (aspect >= 1.6)
{
// If the display aspect is close to or greater than 16:9
// then width of screen is 42 columns (see CEA-708)
screen_columns = 42;
}
font_size = wb->height * .8 * .08;
safe_x = 0.1 * wb->width;
safe_y = 0.1 * wb->height;
min_safe_x = 0.025 * cropped_width;
min_safe_y = 0.025 * cropped_height;
cell_height = (wb->height - 2 * safe_y) / 16;
cell_width = (wb->width - 2 * safe_x) / screen_columns;
char *pos;
int y, x, top;
int col = min_col;
if (aspect >= 1.6)
{
// If the display aspect is close to or greater than 16:9
// center the CC in about a 4:3 region
col += 5;
}
y = cell_height * (min_row + 1 + rows) + safe_y - wb->crop[0];
x = cell_width * col + safe_x - wb->crop[2];
top = y - rows * font_size;
if (top < min_safe_y)
y = (rows * font_size) + min_safe_y;
if (y > cropped_height - min_safe_y)
y = cropped_height - min_safe_y;
if (x + columns * cell_width > cropped_width - min_safe_x)
x = cropped_width - columns * cell_width - min_safe_x;
if (x < min_safe_x)
x = min_safe_x;
pos = hb_strdup_printf("{\\an1\\pos(%d,%d)}", x, y);
int line = 1;
for (i = 0; i < 15; i++)
{
if (data->row_used[i])
{
int first, last;
// Get position for this CC
find_limit_characters(data->characters[i], &first, &last);
/*
* The intention was to use a newline but QT doesn't like it,
* old code still here just in case..
*/
int space = first - min_col;
if (line == 1) {
wb->enc_buffer_used += encode_line(
wb->enc_buffer + wb->enc_buffer_used, (uint8_t*)pos);
wb->enc_buffer_used += stuff_space(
wb->enc_buffer + wb->enc_buffer_used, space);
wb->enc_buffer_used += get_decoder_line_encoded(wb,
wb->enc_buffer + wb->enc_buffer_used, i, data);
line = 2;
} else {
wb->enc_buffer_used += encode_line(
wb->enc_buffer + wb->enc_buffer_used, (uint8_t*)"\\N");
wb->enc_buffer_used += stuff_space(
wb->enc_buffer + wb->enc_buffer_used, space);
wb->enc_buffer_used += get_decoder_line_encoded(wb,
wb->enc_buffer + wb->enc_buffer_used, i, data);
}
}
}
free(pos);
if (wb->enc_buffer_used && wb->enc_buffer[0] != 0 && data->dirty)
{
hb_buffer_t *buffer;
int len;
// bump past null terminator
wb->enc_buffer_used++;
buffer = hb_buffer_init(wb->enc_buffer_used + SSA_PREAMBLE_LEN);
buffer->s.frametype = HB_FRAME_SUBTITLE;
buffer->s.start = ms_start;
buffer->s.stop = AV_NOPTS_VALUE;
buffer->s.scr_sequence = wb->data608->current_visible_scr_sequence;
sprintf((char*)buffer->data, "%d,,Default,,0,0,0,,", ++wb->line);
len = strlen((char*)buffer->data);
memcpy(buffer->data + len, wb->enc_buffer, wb->enc_buffer_used);
hb_buffer_list_append(&wb->list, buffer);
wrote_something=1;
wb->clear_sub_needed = 1;
}
else if (wb->clear_sub_needed)
{
hb_buffer_t *buffer = hb_buffer_init(0);
buffer->s.frametype = HB_FRAME_SUBTITLE;
buffer->s.flags = HB_BUF_FLAG_EOS;
buffer->s.start = ms_start;
buffer->s.stop = ms_start;
buffer->s.scr_sequence = wb->data608->current_visible_scr_sequence;
hb_buffer_list_append(&wb->list, buffer);
wb->clear_sub_needed = 0;
}
if (debug_608)
{
hb_log ("- - - - - - - - - - - -\r\n");
}
return wrote_something;
}
static int write_cc_buffer(struct s_write *wb)
{
struct eia608_screen *data;
int wrote_something=0;
data = get_current_visible_buffer(wb);
if (!data->dirty)
return 0;
wb->new_sentence=1;
wrote_something = write_cc_buffer_as_ssa(data, wb);
data->dirty = 0;
return wrote_something;
}
static void move_roll_up(struct s_write *wb, int row)
{
struct eia608_screen *use_buffer;
int ii, src, dst, keep_lines;
switch (wb->data608->mode)
{
case MODE_ROLLUP_2:
keep_lines = 2;
break;
case MODE_ROLLUP_3: