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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
|
/*
* libzvbi -- Raw VBI decoder
*
* Copyright (C) 2000-2004 Michael H. Schimek
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*/
/* $Id: raw_decoder.c,v 1.24 2008-08-19 10:04:46 mschimek Exp $ */
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include "misc.h"
#include "raw_decoder.h"
#ifndef RAW_DECODER_PATTERN_DUMP
# define RAW_DECODER_PATTERN_DUMP 0
#endif
# define sp_sample_format sampling_format
/**
* $addtogroup RawDecoder Raw VBI decoder
* $ingroup Raw
* $brief Converting a raw VBI image to sliced VBI data.
*/
/* Missing:
VITC PAL 6-22 11.2us 1.8125 Mbit NRZ two start bits + CRC
VITC NTSC 10-21 ditto
CGMS NTSC 20 11us .450450 Mbit NRZ ?
MOJI
*/
const _vbi_service_par _vbi_service_table[] = {
{
VBI_SLICED_TELETEXT_A, /* UNTESTED */
"Teletext System A",
VBI_VIDEOSTD_SET_625_50,
{6, 318},
{22, 335},
10500, 6203125, 6203125, /* 397 x FH */
0x00AAAAE7, 0xFFFF, 18, 6, 37 * 8, VBI_MODULATION_NRZ_LSB,
0, /* probably */
}, {
VBI_SLICED_TELETEXT_B_L10_625,
"Teletext System B 625 Level 1.5",
VBI_VIDEOSTD_SET_625_50,
{7, 320},
{22, 335},
10300, 6937500, 6937500, /* 444 x FH */
0x00AAAAE4, 0xFFFF, 18, 6, 42 * 8, VBI_MODULATION_NRZ_LSB,
0,
}, {
VBI_SLICED_TELETEXT_B,
"Teletext System B, 625",
VBI_VIDEOSTD_SET_625_50,
{6, 318},
{22, 335},
10300, 6937500, 6937500, /* 444 x FH */
0x00AAAAE4, 0xFFFF, 18, 6, 42 * 8, VBI_MODULATION_NRZ_LSB,
0,
}, {
VBI_SLICED_TELETEXT_C_625, /* UNTESTED */
"Teletext System C 625",
VBI_VIDEOSTD_SET_625_50,
{6, 318},
{22, 335},
10480, 5734375, 5734375, /* 367 x FH */
0x00AAAAE7, 0xFFFF, 18, 6, 33 * 8, VBI_MODULATION_NRZ_LSB,
0,
}, {
VBI_SLICED_TELETEXT_D_625, /* UNTESTED */
"Teletext System D 625",
VBI_VIDEOSTD_SET_625_50,
{6, 318},
{22, 335},
10500, /* or 10970 depending on field order */
5642787, 5642787, /* 14/11 x FSC (color subcarrier) */
0x00AAAAE5, 0xFFFF, 18, 6, 34 * 8, VBI_MODULATION_NRZ_LSB,
0,
}, {
VBI_SLICED_VPS, "Video Program System",
VBI_VIDEOSTD_SET_PAL_BG,
{16, 0},
{16, 0},
12500, 5000000, 2500000, /* 160 x FH */
0xAAAA8A99, 0xFFFFFF, 32, 0, 13 * 8,
VBI_MODULATION_BIPHASE_MSB,
_VBI_SP_FIELD_NUM,
}, {
VBI_SLICED_VPS_F2, "Pseudo-VPS on field 2",
VBI_VIDEOSTD_SET_PAL_BG,
{0, 329},
{0, 329},
12500, 5000000, 2500000, /* 160 x FH */
0xAAAA8A99, 0xFFFFFF, 32, 0, 13 * 8,
VBI_MODULATION_BIPHASE_MSB,
_VBI_SP_FIELD_NUM,
}, {
VBI_SLICED_WSS_625, "Wide Screen Signalling 625",
VBI_VIDEOSTD_SET_625_50,
{23, 0},
{23, 0},
11000, 5000000, 833333, /* 160/3 x FH */
/* ...1000 111 / 0 0011 1100 0111 1000 0011 111x */
/* ...0010 010 / 0 1001 1001 0011 0011 1001 110x */
0x8E3C783E, 0x2499339C, 32, 0, 14 * 1,
VBI_MODULATION_BIPHASE_LSB,
/* Hm. Too easily confused with caption?? */
_VBI_SP_FIELD_NUM | _VBI_SP_LINE_NUM,
}, {
VBI_SLICED_CAPTION_625_F1, "Closed Caption 625, field 1",
VBI_VIDEOSTD_SET_625_50,
{22, 0},
{22, 0},
10500, 1000000, 500000, /* 32 x FH */
0x00005551, 0x7FF, 14, 2, 2 * 8, VBI_MODULATION_NRZ_LSB,
_VBI_SP_FIELD_NUM,
}, {
VBI_SLICED_CAPTION_625_F2, "Closed Caption 625, field 2",
VBI_VIDEOSTD_SET_625_50,
{0, 335},
{0, 335},
10500, 1000000, 500000, /* 32 x FH */
0x00005551, 0x7FF, 14, 2, 2 * 8, VBI_MODULATION_NRZ_LSB,
_VBI_SP_FIELD_NUM,
}, {
VBI_SLICED_VBI_625, "VBI 625", /* Blank VBI */
VBI_VIDEOSTD_SET_625_50,
{6, 318},
{22, 335},
10000, 1510000, 1510000,
0, 0, 0, 0, 10 * 8, 0, /* 10.0-2 ... 62.9+1 us */
0,
}, {
VBI_SLICED_TELETEXT_B_525, /* UNTESTED */
"Teletext System B 525",
VBI_VIDEOSTD_SET_525_60,
{10, 272},
{21, 284},
10500, 5727272, 5727272, /* 364 x FH */
0x00AAAAE4, 0xFFFF, 18, 6, 34 * 8, VBI_MODULATION_NRZ_LSB,
0,
}, {
VBI_SLICED_TELETEXT_C_525, /* UNTESTED */
"Teletext System C 525",
VBI_VIDEOSTD_SET_525_60,
{10, 272},
{21, 284},
10480, 5727272, 5727272, /* 364 x FH */
0x00AAAAE7, 0xFFFF, 18, 6, 33 * 8, VBI_MODULATION_NRZ_LSB,
0,
}, {
VBI_SLICED_TELETEXT_D_525, /* UNTESTED */
"Teletext System D 525",
VBI_VIDEOSTD_SET_525_60,
{10, 272},
{21, 284},
9780, 5727272, 5727272, /* 364 x FH */
0x00AAAAE5, 0xFFFF, 18, 6, 34 * 8, VBI_MODULATION_NRZ_LSB,
0,
}, {
#if 0 /* FIXME probably wrong */
VBI_SLICED_WSS_CPR1204, /* NOT CONFIRMED (EIA-J CPR-1204) */
"Wide Screen Signalling 525",
VBI_VIDEOSTD_SET_NTSC_M_JP,
{20, 283},
{20, 283},
11200, 1789773, 447443, /* 1/8 x FSC */
0x000000F0, 0xFF, 8, 0, 20 * 1, VBI_MODULATION_NRZ_MSB,
/* No useful FRC, but a six bit CRC */
0,
}, {
#endif
VBI_SLICED_CAPTION_525_F1,
"Closed Caption 525, field 1",
VBI_VIDEOSTD_SET_525_60,
{21, 0},
{21, 0},
10500, 1006976, 503488, /* 32 x FH */
#if 0
/* Test of CRI bits has been removed to handle the
incorrect signal observed by Rich Kandel (see
_VBI_RAW_SHIFT_CC_CRI). */
0x03, 0x0F, 4, 0, 2 * 8, VBI_MODULATION_NRZ_LSB,
#else
0x00005551, 0x7FF, 14, 2, 2 * 8, VBI_MODULATION_NRZ_LSB,
/* I've seen CC signals on other lines and there's no
way to distinguish from the transmitted data. */
#endif
_VBI_SP_FIELD_NUM | _VBI_SP_LINE_NUM,
}, {
VBI_SLICED_CAPTION_525_F2,
"Closed Caption 525, field 2",
VBI_VIDEOSTD_SET_525_60,
{0, 284},
{0, 284},
10500, 1006976, 503488, /* 32 x FH */
#if 0
/* Test of CRI bits has been removed to handle the
incorrect signal observed by Rich Kandel (see
_VBI_RAW_SHIFT_CC_CRI). */
0x03, 0x0F, 4, 0, 2 * 8, VBI_MODULATION_NRZ_LSB,
#else
0x00005551, 0x7FF, 14, 2, 2 * 8, VBI_MODULATION_NRZ_LSB,
#endif
_VBI_SP_FIELD_NUM | _VBI_SP_LINE_NUM,
}, {
VBI_SLICED_2xCAPTION_525, /* NOT CONFIRMED */
"2xCaption 525",
VBI_VIDEOSTD_SET_525_60,
{10, 0},
{21, 0},
10500, 1006976, 1006976, /* 64 x FH */
0x000554ED, 0xFFFF, 12, 8, 4 * 8,
VBI_MODULATION_NRZ_LSB, /* Tb. */
_VBI_SP_FIELD_NUM,
}, {
VBI_SLICED_VBI_525, "VBI 525", /* Blank VBI */
VBI_VIDEOSTD_SET_525_60,
{10, 272},
{21, 284},
9500, 1510000, 1510000,
0, 0, 0, 0, 10 * 8, 0, /* 9.5-1 ... 62.4+1 us */
0,
}, {
0, NULL,
VBI_VIDEOSTD_SET_EMPTY,
{0, 0},
{0, 0},
0, 0, 0,
0, 0, 0, 0, 0, 0,
0,
}
};
_vbi_inline const _vbi_service_par *
find_service_par (unsigned int service)
{
unsigned int i;
for (i = 0; _vbi_service_table[i].id; ++i)
if (service == _vbi_service_table[i].id)
return _vbi_service_table + i;
return NULL;
}
/**
* $ingroup Sliced
* $param service A data service identifier, for example from a
* vbi_sliced structure.
*
* $return
* Name of the $a service, in ASCII, or $c NULL if unknown.
*/
const char *
vbi_sliced_name (vbi_service_set service)
{
const _vbi_service_par *par;
/* These are ambiguous */
if (service == VBI_SLICED_CAPTION_525)
return "Closed Caption 525";
if (service == VBI_SLICED_CAPTION_625)
return "Closed Caption 625";
if (service == (VBI_SLICED_VPS | VBI_SLICED_VPS_F2))
return "Video Program System";
if (service == VBI_SLICED_TELETEXT_B_L25_625)
return "Teletext System B 625 Level 2.5";
/* Incorrect, no longer in table */
if (service == VBI_SLICED_TELETEXT_BD_525)
return "Teletext System B/D";
if ((par = find_service_par (service)))
return par->label;
return NULL;
}
/**
* @ingroup Sliced
* @param service A data service identifier, for example from a
* vbi_sliced structure.
*
* @return
* Number of payload bits, @c 0 if the service is unknown.
*/
unsigned int
vbi_sliced_payload_bits (unsigned int service)
{
const _vbi_service_par *par;
/* These are ambiguous */
if (service == VBI_SLICED_CAPTION_525)
return 16;
if (service == VBI_SLICED_CAPTION_625)
return 16;
if (service == (VBI_SLICED_VPS | VBI_SLICED_VPS_F2))
return 13 * 8;
if (service == VBI_SLICED_TELETEXT_B_L25_625)
return 42 * 8;
/* Incorrect, no longer in table */
if (service == VBI_SLICED_TELETEXT_BD_525)
return 34 * 8;
if ((par = find_service_par (service)))
return par->payload;
return 0;
}
static void
dump_pattern_line (const vbi3_raw_decoder * rd, unsigned int row, FILE * fp)
{
const vbi_sampling_par *sp;
unsigned int line;
unsigned int i;
sp = &rd->sampling;
if (sp->interlaced) {
unsigned int field = row & 1;
if (0 == sp->start[field])
line = 0;
else
line = sp->start[field] + (row >> 1);
} else {
if (row >= (unsigned int) sp->count[0]) {
if (0 == sp->start[1])
line = 0;
else
line = sp->start[1] + row - sp->count[0];
} else {
if (0 == sp->start[0])
line = 0;
else
line = sp->start[0] + row;
}
}
fprintf (fp, "scan line %3u: ", line);
for (i = 0; i < _VBI3_RAW_DECODER_MAX_WAYS; ++i) {
unsigned int pos;
pos = row * _VBI3_RAW_DECODER_MAX_WAYS;
fprintf (fp, "%02x ", (uint8_t) rd->pattern[pos + i]);
}
fputc ('\n', fp);
}
void
_vbi3_raw_decoder_dump (const vbi3_raw_decoder * rd, FILE * fp)
{
const vbi_sampling_par *sp;
unsigned int i;
assert (NULL != fp);
fprintf (fp, "vbi3_raw_decoder %p\n", rd);
if (NULL == rd)
return;
fprintf (fp, " services 0x%08x\n", rd->services);
for (i = 0; i < rd->n_jobs; ++i)
fprintf (fp, " job %u: 0x%08x (%s)\n",
i + 1, rd->jobs[i].id, vbi_sliced_name (rd->jobs[i].id));
if (!rd->pattern) {
fprintf (fp, " no pattern\n");
return;
}
sp = &rd->sampling;
for (i = 0; i < ((unsigned int) sp->count[0]
+ (unsigned int) sp->count[1]); ++i) {
fputs (" ", fp);
dump_pattern_line (rd, i, fp);
}
}
#if 0 /* @UNUSED */
_vbi_inline int
cpr1204_crc (const vbi_sliced * sliced)
{
const int poly = (1 << 6) + (1 << 1) + 1;
int crc, i;
crc = (+(sliced->data[0] << 12)
+ (sliced->data[1] << 4)
+ (sliced->data[2]));
crc |= (((1 << 6) - 1) << (14 + 6));
for (i = 14 + 6 - 1; i >= 0; i--) {
if (crc & ((1 << 6) << i))
crc ^= poly << i;
}
return crc;
}
#endif
static vbi_bool
slice (vbi3_raw_decoder * rd,
vbi_sliced * sliced,
_vbi3_raw_decoder_job * job, unsigned int i, const uint8_t * raw)
{
if (rd->debug && NULL != rd->sp_lines) {
return vbi3_bit_slicer_slice_with_points
(&job->slicer,
sliced->data,
sizeof (sliced->data),
rd->sp_lines[i].points,
&rd->sp_lines[i].n_points, N_ELEMENTS (rd->sp_lines[i].points), raw);
} else {
return vbi3_bit_slicer_slice
(&job->slicer, sliced->data, sizeof (sliced->data), raw);
}
}
_vbi_inline vbi_sliced *
decode_pattern (vbi3_raw_decoder * rd,
vbi_sliced * sliced, int8_t * pattern, unsigned int i, const uint8_t * raw)
{
vbi_sampling_par *sp;
int8_t *pat;
sp = &rd->sampling;
for (pat = pattern;; ++pat) {
int j;
j = *pat; /* data service n, blank 0, or counter -n */
if (j > 0) {
_vbi3_raw_decoder_job *job;
job = rd->jobs + j - 1;
if (!slice (rd, sliced, job, i, raw)) {
continue; /* no match, try next data service */
}
/* FIXME probably wrong */
if (0 && VBI_SLICED_WSS_CPR1204 == job->id) {
const int poly = (1 << 6) + (1 << 1) + 1;
int crc, j;
crc = (sliced->data[0] << 12)
+ (sliced->data[1] << 4)
+ sliced->data[2];
crc |= (((1 << 6) - 1) << (14 + 6));
for (j = 14 + 6 - 1; j >= 0; j--) {
if (crc & ((1 << 6) << j))
crc ^= poly << j;
}
if (crc)
continue; /* no match */
}
/* Positive match, output decoded line. */
/* FIXME: if we have a field number we should
really only set the service id of one field. */
sliced->id = job->id;
sliced->line = 0;
if (i >= (unsigned int) sp->count[0]) {
if (sp->synchronous && 0 != sp->start[1])
sliced->line = sp->start[1]
+ i - sp->count[0];
} else {
if (sp->synchronous && 0 != sp->start[0])
sliced->line = sp->start[0] + i;
}
if (0)
fprintf (stderr, "%2d %s\n",
sliced->line, vbi_sliced_name (sliced->id));
++sliced;
/* Predict line as non-blank, force testing for
all data services in the next 128 frames. */
pattern[_VBI3_RAW_DECODER_MAX_WAYS - 1] = -128;
} else if (pat == pattern) {
/* Line was predicted as blank, once in 16
frames look for data services. */
if (0 == rd->readjust) {
unsigned int size;
size = sizeof (*pattern)
* (_VBI3_RAW_DECODER_MAX_WAYS - 1);
j = pattern[0];
memmove (&pattern[0], &pattern[1], size);
pattern[_VBI3_RAW_DECODER_MAX_WAYS - 1] = j;
}
break;
} else if ((j = pattern[_VBI3_RAW_DECODER_MAX_WAYS - 1]) < 0) {
/* Increment counter, when zero predict line as
blank and stop looking for data services until
0 == rd->readjust. */
/* Disabled because we may miss caption/subtitles
when the signal inserter is disabled during silent
periods for more than 4-5 seconds. */
/* pattern[_VBI3_RAW_DECODER_MAX_WAYS - 1] = j + 1; */
break;
} else {
/* found nothing, j = 0 */
}
/* Try the found data service first next time. */
*pat = pattern[0];
pattern[0] = j;
break; /* line done */
}
return sliced;
}
/**
* $param rd Pointer to vbi3_raw_decoder object allocated with
* vbi3_raw_decoder_new().
* $param sliced Buffer to store the decoded vbi_sliced data. Since every
* vbi scan line may contain data, this should be an array of vbi_sliced
* with the same number of elements as scan lines in the raw image
* (vbi_sampling_parameters.count[0] + .count[1]).
* $param max_lines Size of $a sliced data array, in lines, not bytes.
* $param raw A raw vbi image as described by the vbi_sampling_par
* associated with $a rd.
*
* Decodes a raw vbi image, consisting of several scan lines of raw vbi data,
* to sliced vbi data. The output is sorted by ascending line number.
*
* Note this function attempts to learn which lines carry which data
* service, or if any, to speed up decoding. You should avoid using the same
* vbi3_raw_decoder object for different sources.
*
* $return
* The number of lines decoded, i. e. the number of vbi_sliced records
* written.
*/
unsigned int
vbi3_raw_decoder_decode (vbi3_raw_decoder * rd,
vbi_sliced * sliced, unsigned int max_lines, const uint8_t * raw)
{
vbi_sampling_par *sp;
unsigned int scan_lines;
unsigned int pitch;
int8_t *pattern;
const uint8_t *raw1;
vbi_sliced *sliced_begin;
vbi_sliced *sliced_end;
unsigned int i;
if (!rd->services)
return 0;
sp = &rd->sampling;
scan_lines = sp->count[0] + sp->count[1];
pitch = sp->bytes_per_line << sp->interlaced;
pattern = rd->pattern;
raw1 = raw;
sliced_begin = sliced;
sliced_end = sliced + max_lines;
if (RAW_DECODER_PATTERN_DUMP)
_vbi3_raw_decoder_dump (rd, stderr);
for (i = 0; i < scan_lines; ++i) {
if (sliced >= sliced_end)
break;
if (sp->interlaced && i == (unsigned int) sp->count[0])
raw = raw1 + sp->bytes_per_line;
sliced = decode_pattern (rd, sliced, pattern, i, raw);
pattern += _VBI3_RAW_DECODER_MAX_WAYS;
raw += pitch;
}
rd->readjust = (rd->readjust + 1) & 15;
return sliced - sliced_begin;
}
/**
* $param rd Pointer to vbi3_raw_decoder object allocated with
* vbi3_raw_decoder_new().
*
* Resets a vbi3_raw_decoder object, removing all services added
* with vbi3_raw_decoder_add_services().
*/
void
vbi3_raw_decoder_reset (vbi3_raw_decoder * rd)
{
assert (NULL != rd);
if (rd->pattern) {
vbi_free (rd->pattern);
rd->pattern = NULL;
}
rd->services = 0;
rd->n_jobs = 0;
rd->readjust = 1;
CLEAR (rd->jobs);
}
static void
remove_job_from_pattern (vbi3_raw_decoder * rd, int job_num)
{
int8_t *pattern;
unsigned int scan_lines;
job_num += 1; /* index into rd->jobs, 0 means no job */
pattern = rd->pattern;
scan_lines = rd->sampling.count[0] + rd->sampling.count[1];
/* For each scan line. */
while (scan_lines-- > 0) {
int8_t *dst;
int8_t *src;
int8_t *end;
dst = pattern;
end = pattern + _VBI3_RAW_DECODER_MAX_WAYS;
/* Remove jobs with job_num, fill up pattern with 0.
Jobs above job_num move down in rd->jobs. */
for (src = dst; src < end; ++src) {
int8_t num = *src;
if (num > job_num)
*dst++ = num - 1;
else if (num != job_num)
*dst++ = num;
}
while (dst < end)
*dst++ = 0;
pattern = end;
}
}
/**
* $param rd Pointer to vbi3_raw_decoder object allocated with
* vbi3_raw_decoder_new().
* $param services Set of data services.
*
* Removes one or more data services to be decoded from the
* vbi3_raw_decoder object.
*
* $return
* Set describing the remaining data services $a rd will decode.
*/
vbi_service_set
vbi3_raw_decoder_remove_services
(vbi3_raw_decoder * rd, vbi_service_set services) {
_vbi3_raw_decoder_job *job;
unsigned int job_num;
assert (NULL != rd);
job = rd->jobs;
job_num = 0;
while (job_num < rd->n_jobs) {
if (job->id & services) {
if (rd->pattern)
remove_job_from_pattern (rd, job_num);
memmove (job, job + 1, (rd->n_jobs - job_num - 1) * sizeof (*job));
--rd->n_jobs;
CLEAR (rd->jobs[rd->n_jobs]);
} else {
++job_num;
}
}
rd->services &= ~services;
return rd->services;
}
static vbi_bool
add_job_to_pattern (vbi3_raw_decoder * rd,
int job_num, unsigned int *start, unsigned int *count)
{
int8_t *pattern_end;
unsigned int scan_lines;
unsigned int field;
job_num += 1; /* index into rd->jobs, 0 means no job */
scan_lines = rd->sampling.count[0]
+ rd->sampling.count[1];
pattern_end = rd->pattern + scan_lines * _VBI3_RAW_DECODER_MAX_WAYS;
for (field = 0; field < 2; ++field) {
int8_t *pattern;
unsigned int i;
pattern = rd->pattern + start[field] * _VBI3_RAW_DECODER_MAX_WAYS;
/* For each line where we may find the data. */
for (i = 0; i < count[field]; ++i) {
unsigned int free;
int8_t *dst;
int8_t *src;
int8_t *end;
assert (pattern < pattern_end);
dst = pattern;
end = pattern + _VBI3_RAW_DECODER_MAX_WAYS;
free = 0;
for (src = dst; src < end; ++src) {
int8_t num = *src;
if (num <= 0) {
++free;
continue;
} else {
free += (num == job_num);
*dst++ = num;
}
}
while (dst < end)
*dst++ = 0;
if (free <= 1) /* reserve a NULL way */
return FALSE;
pattern = end;
}
}
for (field = 0; field < 2; ++field) {
int8_t *pattern;
unsigned int i;
pattern = rd->pattern + start[field] * _VBI3_RAW_DECODER_MAX_WAYS;
/* For each line where we may find the data. */
for (i = 0; i < count[field]; ++i) {
unsigned int way;
for (way = 0; pattern[way] > 0; ++way)
if (pattern[way] == job_num)
break;
pattern[way] = job_num;
pattern[_VBI3_RAW_DECODER_MAX_WAYS - 1] = -128;
pattern += _VBI3_RAW_DECODER_MAX_WAYS;
}
}
return TRUE;
}
static void
lines_containing_data (unsigned int start[2],
unsigned int count[2],
const vbi_sampling_par * sp, const _vbi_service_par * par)
{
unsigned int field;
start[0] = 0;
start[1] = sp->count[0];
count[0] = sp->count[0];
count[1] = sp->count[1];
if (!sp->synchronous) {
/* XXX Scanning all lines isn't always necessary. */
return;
}
for (field = 0; field < 2; ++field) {
unsigned int first;
unsigned int last;
if (0 == par->first[field]
|| 0 == par->last[field]) {
/* No data on this field. */
count[field] = 0;
continue;
}
first = sp->start[field];
last = first + sp->count[field] - 1;
if (first > 0 && sp->count[field] > 0) {
assert (par->first[field] <= par->last[field]);
if ((unsigned int) par->first[field] > last
|| (unsigned int) par->last[field] < first)
continue;
first = MAX (first, (unsigned int) par->first[field]);
last = MIN ((unsigned int) par->last[field], last);
start[field] += first - sp->start[field];
count[field] = last + 1 - first;
}
}
}
/**
* $param rd Pointer to vbi3_raw_decoder object allocated with
* vbi3_raw_decoder_new().
* $param services Set of data services.
* $param strict A value of 0, 1 or 2 requests loose, reliable or strict
* matching of sampling parameters. For example if the data service
* requires knowledge of line numbers, $c 0 will always accept the
* service (which may work if the scan lines are populated in a
* non-confusing way) but $c 1 or $c 2 will not. If the data service
* might use more lines than are sampled, $c 1 will accept but $c 2
* will not. If unsure, set to $c 1.
*
* Adds one or more data services to be decoded. Currently the libzvbi
* raw vbi decoder can decode up to eight data services in parallel.
*
* $return
* Set describing the data services $a rd will decode. The function
* eliminates services which cannot be decoded with the current
* sampling parameters, or when they exceed the decoder capacity.
*/
/* Attn: strict must be int for compatibility with libzvbi 0.2 (-1 == 0) */
vbi_service_set
vbi3_raw_decoder_add_services (vbi3_raw_decoder * rd,
vbi_service_set services, int strict)
{
const _vbi_service_par *par;
double min_offset;
assert (NULL != rd);
services &= ~(VBI_SLICED_VBI_525 | VBI_SLICED_VBI_625);
if (rd->services & services) {
info (&rd->log,
"Already decoding services 0x%08x.", rd->services & services);
services &= ~rd->services;
}
if (0 == services) {
info (&rd->log, "No services to add.");
return rd->services;
}
if (!rd->pattern) {
unsigned int scan_lines;
unsigned int scan_ways;
unsigned int size;
scan_lines = rd->sampling.count[0] + rd->sampling.count[1];
scan_ways = scan_lines * _VBI3_RAW_DECODER_MAX_WAYS;
size = scan_ways * sizeof (rd->pattern[0]);
rd->pattern = (int8_t *) vbi_malloc (size);
if (NULL == rd->pattern) {
error (&rd->log, "Out of memory.");
return rd->services;
}
memset (rd->pattern, 0, scan_ways * sizeof (rd->pattern[0]));
}
if (525 == rd->sampling.scanning) {
min_offset = 7.9e-6;
} else {
min_offset = 8.0e-6;
}
for (par = _vbi_service_table; par->id; ++par) {
vbi_sampling_par *sp;
_vbi3_raw_decoder_job *job;
unsigned int start[2];
unsigned int count[2];
unsigned int sample_offset;
unsigned int samples_per_line;
unsigned int cri_end;
unsigned int j;
if (0 == (par->id & services))
continue;
job = rd->jobs;
/* Some jobs can be merged, otherwise we add a new job. */
for (j = 0; j < rd->n_jobs; ++j) {
unsigned int id = job->id | par->id;
/* Level 1.0 and 2.5 */
if (0 == (id & ~VBI_SLICED_TELETEXT_B)
/* Field 1 and 2 */
|| 0 == (id & ~VBI_SLICED_CAPTION_525)
|| 0 == (id & ~VBI_SLICED_CAPTION_625)
|| 0 == (id & ~(VBI_SLICED_VPS | VBI_SLICED_VPS_F2)))
break;
++job;
}
if (j >= _VBI3_RAW_DECODER_MAX_JOBS) {
error (&rd->log,
"Set 0x%08x exceeds number of "
"simultaneously decodable "
"services (%u).", services, _VBI3_RAW_DECODER_MAX_WAYS);
break;
} else if (j >= rd->n_jobs) {
job->id = 0;
}
sp = &rd->sampling;
if (!_vbi_sampling_par_check_services_log (sp, par->id, strict, &rd->log))
continue;
sample_offset = 0;
/* Skip color burst. */
/* Offsets aren't that reliable, sigh. */
if (0 && sp->offset > 0 && strict > 0) {
double offset;
offset = sp->offset / (double) sp->sampling_rate;
if (offset < min_offset)
sample_offset = (int) (min_offset * sp->sampling_rate);
}
if (VBI_SLICED_WSS_625 & par->id) {
/* TODO: WSS 625 occupies only first half of line,
we can abort earlier. */
cri_end = ~0;
} else {
cri_end = ~0;
}
samples_per_line = sp->bytes_per_line
/ VBI_PIXFMT_BPP (sp->sp_sample_format);
if (!_vbi3_bit_slicer_init (&job->slicer)) {
assert (!"bit_slicer_init");
}
if (!vbi3_bit_slicer_set_params
(&job->slicer,
sp->sp_sample_format,
sp->sampling_rate,
sample_offset,
samples_per_line,
par->cri_frc >> par->frc_bits,
par->cri_frc_mask >> par->frc_bits,
par->cri_bits,
par->cri_rate,
cri_end,
(par->cri_frc & ((1U << par->frc_bits) - 1)),
par->frc_bits, par->payload, par->bit_rate,
(vbi3_modulation) par->modulation)) {
assert (!"bit_slicer_set_params");
}
vbi3_bit_slicer_set_log_fn (&job->slicer,
rd->log.mask, rd->log.fn, rd->log.user_data);
lines_containing_data (start, count, sp, par);
if (!add_job_to_pattern (rd, job - rd->jobs, start, count)) {
error (&rd->log,
"Out of decoder pattern space for "
"service 0x%08x (%s).", par->id, par->label);
continue;
}
job->id |= par->id;
if (job >= rd->jobs + rd->n_jobs)
++rd->n_jobs;
rd->services |= par->id;
}
return rd->services;
}
vbi_bool
vbi3_raw_decoder_sampling_point (vbi3_raw_decoder * rd,
vbi3_bit_slicer_point * point, unsigned int row, unsigned int nth_bit)
{
assert (NULL != rd);
assert (NULL != point);
if (row >= rd->n_sp_lines)
return FALSE;
if (nth_bit >= rd->sp_lines[row].n_points)
return FALSE;
*point = rd->sp_lines[row].points[nth_bit];
return TRUE;
}
vbi_bool
vbi3_raw_decoder_debug (vbi3_raw_decoder * rd, vbi_bool enable)
{
#if 0 /* Set but unused */
_vbi3_raw_decoder_sp_line *sp_lines;
#endif
unsigned int n_lines;
vbi_bool r;
assert (NULL != rd);
#if 0 /* Set but unused */
sp_lines = NULL;
#endif
r = TRUE;
rd->debug = ! !enable;
n_lines = 0;
if (enable) {
n_lines = rd->sampling.count[0] + rd->sampling.count[1];
}
switch (rd->sampling.sp_sample_format) {
case VBI_PIXFMT_YUV420:
break;
default:
/* Not implemented. */
n_lines = 0;
r = FALSE;
break;
}
if (rd->n_sp_lines == n_lines)
return r;
vbi_free (rd->sp_lines);
rd->sp_lines = NULL;
rd->n_sp_lines = 0;
if (n_lines > 0) {
rd->sp_lines = calloc (n_lines, sizeof (*rd->sp_lines));
if (NULL == rd->sp_lines)
return FALSE;
rd->n_sp_lines = n_lines;
}
return r;
}
vbi_service_set
vbi3_raw_decoder_services (vbi3_raw_decoder * rd)
{
assert (NULL != rd);
return rd->services;
}
/**
* $param rd Pointer to a vbi3_raw_decoder object allocated with
* vbi3_raw_decoder_new().
* $param sp New sampling parameters.
* $param strict See vbi3_raw_decoder_add_services().
*
* Changes the sampling parameters used by $a rd. This will
* remove all services which have been added with
* vbi3_raw_decoder_add_services() but cannot be decoded with
* the new sampling parameters.
*
* $return
* Set of data services $rd will be decode after the change.
* Can be zero if the sampling parameters are invalid or some
* other error occured.
*/
/* Attn: strict must be int for compatibility with libzvbi 0.2 (-1 == 0) */
vbi_service_set
vbi3_raw_decoder_set_sampling_par
(vbi3_raw_decoder * rd, const vbi_sampling_par * sp, int strict) {
unsigned int services;
assert (NULL != rd);
assert (NULL != sp);
services = rd->services;
vbi3_raw_decoder_reset (rd);
if (!_vbi_sampling_par_valid_log (sp, &rd->log)) {
CLEAR (rd->sampling);
return 0;
}
rd->sampling = *sp;
/* Error ignored. */
vbi3_raw_decoder_debug (rd, rd->debug);
return vbi3_raw_decoder_add_services (rd, services, strict);
}
/**
* $param rd Pointer to a vbi3_raw_decoder object allocated with
* vbi3_raw_decoder_new().
* $param sp Sampling parameters will be stored here.
*
* Returns sampling parameters used by $a rd.
*/
void vbi3_raw_decoder_get_sampling_par
(const vbi3_raw_decoder * rd, vbi_sampling_par * sp)
{
assert (NULL != rd);
assert (NULL != sp);
*sp = rd->sampling;
}
void
vbi3_raw_decoder_set_log_fn (vbi3_raw_decoder * rd,
vbi_log_fn * log_fn, void *user_data, vbi_log_mask mask)
{
unsigned int i;
assert (NULL != rd);
if (NULL == log_fn)
mask = 0;
rd->log.mask = mask;
rd->log.fn = log_fn;
rd->log.user_data = user_data;
for (i = 0; i < _VBI3_RAW_DECODER_MAX_JOBS; ++i) {
vbi3_bit_slicer_set_log_fn (&rd->jobs[i].slicer, mask, log_fn, user_data);
}
}
/**
* @internal
*
* Free all resources associated with @a rd.
*/
void
_vbi3_raw_decoder_destroy (vbi3_raw_decoder * rd)
{
vbi3_raw_decoder_reset (rd);
vbi3_raw_decoder_debug (rd, FALSE);
/* Make unusable. */
CLEAR (*rd);
}
/**
* @internal
*
* See vbi3_raw_decoder_new().
*/
vbi_bool
_vbi3_raw_decoder_init (vbi3_raw_decoder * rd, const vbi_sampling_par * sp)
{
CLEAR (*rd);
vbi3_raw_decoder_reset (rd);
if (NULL != sp) {
if (!_vbi_sampling_par_valid_log (sp, &rd->log))
return FALSE;
rd->sampling = *sp;
}
return TRUE;
}
/**
* $param rd Pointer to a vbi3_raw_decoder object allocated with
* vbi3_raw_decoder_new(), can be NULL
*
* Deletes a vbi3_raw_decoder object.
*/
void
vbi3_raw_decoder_delete (vbi3_raw_decoder * rd)
{
if (NULL == rd)
return;
_vbi3_raw_decoder_destroy (rd);
vbi_free (rd);
}
/**
* $param sp VBI sampling parameters describing the raw VBI image
* to decode, can be $c NULL. If they are negotiatable you can determine
* suitable parameters with vbi_sampling_par_from_services(). You can
* change the sampling parameters later with
* vbi3_raw_decoder_set_sampling_par().
*
* Allocates a vbi3_raw_decoder object. To actually decode data
* services you must request the data with vbi3_raw_decoder_add_services().
*
* $returns
* NULL when out of memory or the sampling parameters are invalid,
* Otherwise a pointer to an opaque vbi3_raw_decoder object which must
* be deleted with vbi3_raw_decoder_delete() when done.
*/
vbi3_raw_decoder *
vbi3_raw_decoder_new (const vbi_sampling_par * sp)
{
vbi3_raw_decoder *rd;
rd = vbi_malloc (sizeof (*rd));
if (NULL == rd) {
errno = ENOMEM;
return NULL;
}
if (!_vbi3_raw_decoder_init (rd, sp)) {
vbi_free (rd);
rd = NULL;
}
return rd;
}
/*
Local variables:
c-set-style: K&R
c-basic-offset: 8
End:
*/
|