This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstream.c
1015 lines (841 loc) · 24.1 KB
/
stream.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
/*************************************************************
Copyright (C) 1990, 1991, 1993 Andy C. Hung, all rights reserved.
PUBLIC DOMAIN LICENSE: Stanford University Portable Video Research
Group. If you use this software, you agree to the following: This
program package is purely experimental, and is licensed "as is".
Permission is granted to use, modify, and distribute this program
without charge for any purpose, provided this license/ disclaimer
notice appears in the copies. No warranty or maintenance is given,
either expressed or implied. In no event shall the author(s) be
liable to you or a third party for any special, incidental,
consequential, or other damages, arising out of the use or inability
to use the program for any purpose (or the loss of data), even if we
have been advised of such possibilities. Any public reference or
advertisement of this source code should refer to it as the Portable
Video Research Group (PVRG) code, and not by any author(s) (or
Stanford University) name.
*************************************************************/
/*
************************************************************
stream.c
This file is used for management of bit-aligned files.
************************************************************
*/
/*LABEL stream.c */
/* Include files */
#include "globals.h"
#include "marker.h"
#include "stream.h"
#include <stdlib.h> /* exit */
/*PUBLIC*/
extern void initstream();
extern void pushstream();
extern void popstream();
extern void bpushc();
extern int bgetc();
extern void bputc();
extern void mropen();
extern void mrclose();
extern void mwopen();
extern void swbytealign();
extern void mwclose();
extern long mwtell();
extern long mrtell();
extern void mwseek();
extern void mrseek();
extern int megetb();
extern void meputv();
extern int megetv();
extern int DoMarker();
extern int ScreenMarker();
extern void Resync();
extern void WriteResync();
extern int ReadResync();
extern int ScreenAllMarker();
extern int DoAllMarker();
static int pgetc();
/*PRIVATE*/
/* External values */
extern int ErrorValue;
extern IMAGE *CImage;
extern int Robust; /* Whether to ignore scan markers and such */
/* Masks */
int bit_set_mask[] = { /* This is 2^i at ith position */
0x00000001,0x00000002,0x00000004,0x00000008,
0x00000010,0x00000020,0x00000040,0x00000080,
0x00000100,0x00000200,0x00000400,0x00000800,
0x00001000,0x00002000,0x00004000,0x00008000,
0x00010000,0x00020000,0x00040000,0x00080000,
0x00100000,0x00200000,0x00400000,0x00800000,
0x01000000,0x02000000,0x04000000,0x08000000,
0x10000000,0x20000000,0x40000000,0x80000000};
int lmask[] = { /* This is 2^{i+1}-1 */
0x00000001,0x00000003,0x00000007,0x0000000f,
0x0000001f,0x0000003f,0x0000007f,0x000000ff,
0x000001ff,0x000003ff,0x000007ff,0x00000fff,
0x00001fff,0x00003fff,0x00007fff,0x0000ffff,
0x0001ffff,0x0003ffff,0x0007ffff,0x000fffff,
0x001fffff,0x003fffff,0x007fffff,0x00ffffff,
0x01ffffff,0x03ffffff,0x07ffffff,0x0fffffff,
0x1fffffff,0x3fffffff,0x7fffffff,0xffffffff};
#ifdef __OLD
int umask[] = { /* This is -1 XOR 2^{i+1}-1 */
0xfffffffe,0xfffffffc,0xfffffff8,0xfffffff0,
0xffffffe0,0xffffffc0,0xffffff80,0xffffff00,
0xfffffe00,0xfffffc00,0xfffff800,0xfffff000,
0xffffe000,0xffffc000,0xffff8000,0xffff0000,
0xfffe0000,0xfffc0000,0xfff80000,0xfff00000,
0xffe00000,0xffc00000,0xff800000,0xff000000,
0xfe000000,0xfc000000,0xf8000000,0xf0000000,
0xe0000000,0xc0000000,0x80000000,0x00000000};
#endif
/* Internally kept variables for global flag communication */
int CleartoResync=0; /* Return black blocks until last Resync reached*/
int ResyncEnable=0; /* This enables the resync feature */
int ResyncCount=0; /* This is the resync marker count */
int LastKnownResync=0; /* This is the index of the next Resync */
int EndofFile=0; /* End of file means read stream exhausted */
int EndofImage=0; /* End of image means EOI image marker found */
/* Static variables that keep internal state. */
static FILE *swout;
static FILE *srin;
static unsigned int current_write_byte;
static unsigned int current_read_byte;
static unsigned int marker_read_byte;
static int read_position;
static int write_position;
static int InResync=0;
/* Stack of variables to handle multiple streams. */
static int Stack_Stream_Current= -1;
static int Stack_Stream_Active[NUMBER_OF_STREAMS];
static int Stack_Stream_CleartoResync[NUMBER_OF_STREAMS];
static int Stack_Stream_ResyncEnable[NUMBER_OF_STREAMS];
static int Stack_Stream_ResyncCount[NUMBER_OF_STREAMS];
static int Stack_Stream_LastKnownResync[NUMBER_OF_STREAMS];
static int Stack_Stream_EndofFile[NUMBER_OF_STREAMS];
static int Stack_Stream_EndofImage[NUMBER_OF_STREAMS];
static FILE * Stack_Stream_swout[NUMBER_OF_STREAMS];
static FILE * Stack_Stream_srin[NUMBER_OF_STREAMS];
static unsigned int Stack_Stream_current_write_byte[NUMBER_OF_STREAMS];
static unsigned int Stack_Stream_current_read_byte[NUMBER_OF_STREAMS];
static unsigned int Stack_Stream_marker_read_byte[NUMBER_OF_STREAMS];
static int Stack_Stream_read_position[NUMBER_OF_STREAMS];
static int Stack_Stream_write_position[NUMBER_OF_STREAMS];
/*START*/
/* STACK STREAM LIBRARY */
/*BFUNC
initstream() initializes all of the stream variables-- especially the
stack. Not necessary to call unless you wish to use more than one
stream variable.
EFUNC*/
void initstream()
{
BEGIN("initstream")
int i;
Stack_Stream_Current= -1;
for(i=0;i<NUMBER_OF_STREAMS;i++)
{
Stack_Stream_Active[i]=0;
Stack_Stream_swout[i]=NULL;
Stack_Stream_srin[i]=NULL;
}
}
/*BFUNC
pushstream() pushes the currently active stream into its predefined
location.
EFUNC*/
void pushstream()
{
BEGIN("pushstream")
if (Stack_Stream_Current < 0) return;
Stack_Stream_CleartoResync[Stack_Stream_Current]=CleartoResync;
Stack_Stream_ResyncEnable[Stack_Stream_Current]=ResyncEnable;
Stack_Stream_ResyncCount[Stack_Stream_Current]=ResyncCount;
Stack_Stream_LastKnownResync[Stack_Stream_Current]=LastKnownResync;
Stack_Stream_EndofFile[Stack_Stream_Current]=EndofFile;
Stack_Stream_EndofImage[Stack_Stream_Current]=EndofImage;
Stack_Stream_swout[Stack_Stream_Current]=swout;
Stack_Stream_srin[Stack_Stream_Current]=srin;
Stack_Stream_current_write_byte[Stack_Stream_Current]=current_write_byte;
Stack_Stream_current_read_byte[Stack_Stream_Current]=current_read_byte;
Stack_Stream_marker_read_byte[Stack_Stream_Current]=marker_read_byte;
Stack_Stream_read_position[Stack_Stream_Current]=read_position;
Stack_Stream_write_position[Stack_Stream_Current]=write_position;
}
/*BFUNC
popstream() gets the specified stream from the location. If there
is already a current active stream, it removes it.
EFUNC*/
void popstream(index)
int index;
{
BEGIN("popstream")
if ((index < 0)||(!Stack_Stream_Active[index]))
{
WHEREAMI();
printf("Cannot pop non-existent stream.\n");
exit(ERROR_BOUNDS);
}
if (Stack_Stream_Current >=0) pushstream();
CleartoResync=Stack_Stream_CleartoResync[index];
ResyncEnable=Stack_Stream_ResyncEnable[index];
ResyncCount=Stack_Stream_ResyncCount[index];
LastKnownResync=Stack_Stream_LastKnownResync[index];
EndofFile=Stack_Stream_EndofFile[index];
EndofImage=Stack_Stream_EndofImage[index];
swout=Stack_Stream_swout[index];
srin=Stack_Stream_srin[index];
current_write_byte=Stack_Stream_current_write_byte[index];
current_read_byte=Stack_Stream_current_read_byte[index];
marker_read_byte=Stack_Stream_marker_read_byte[index];
read_position=Stack_Stream_read_position[index];
write_position=Stack_Stream_write_position[index];
}
/* THAT'S ALL FOR THE STACK STREAM LIBRARY! */
/* BUFFER LIBRARY */
/*BFUNC
brtell() is used to find the location in the read stream.
EFUNC*/
int brtell()
{BEGIN("brtell") return(ftell(srin));}
/*BFUNC
brseek() is used to find the location in the read stream.
EFUNC*/
int brseek(offset,ptr)
int offset;
int ptr;
{BEGIN("brseek") return(fseek(srin,offset,ptr));}
/*BFUNC
bpushc() is used to unget a character value from the current stream.
EFUNC*/
void bpushc(value)
int value;
{BEGIN("bpushc") ungetc(value,srin);}
/*BFUNC
bgetc() gets a character from the stream. It is byte aligned and
bypasses bit buffering.
EFUNC*/
int bgetc()
{BEGIN("bgetc") return(getc(srin));}
/*BFUNC
bgetw() gets a msb word from the stream.
EFUNC*/
int bgetw()
{BEGIN("bgetw") int fu; fu=getc(srin); return ((fu << 8)| getc(srin));}
/*BFUNC
bputc() puts a character into the stream. It is byte aligned and
bypasses the bit buffering.
EFUNC*/
void bputc(c)
int c;
{BEGIN("bputc") putc(c,swout);}
/* PROTECTED MARKER GETS AND FETCHES */
/*BFUNC
pgetc() gets a character onto the stream but it checks to see
if there are any marker conflicts.
EFUNC*/
static int pgetc()
{
BEGIN("pgetc")
int temp;
if (CleartoResync) /* If cleartoresync do not read from stream */
{
return(0);
}
if ((temp = bgetc())==MARKER_MARKER) /* If MARKER then */
{
if ((temp = bgetc())) /* if next is not 0xff, then marker */
{
WHEREAMI();
printf("Unanticipated marker detected.\n");
if (!ResyncEnable) DoAllMarker(); /* If no resync enabled */
} /* could be marker */
else
{
return(MARKER_MARKER); /* else truly 0xff */
}
}
return(temp);
}
/*BMACRO
pputc(stream,)
) puts a value onto the stream; puts a value onto the stream, appending an extra '0' if it
matches the marker code.
EMACRO*/
#define pputc(val) {bputc(val); if (val==MARKER_MARKER) bputc(0);}
/* MAIN ROUTINES */
/*BFUNC
mropen() opens a given filename as the input read stream.
EFUNC*/
void mropen(filename,index)
char *filename;
int index;
{
BEGIN("mropen")
if (Stack_Stream_Active[index])
{
WHEREAMI();
printf("%s cannot be opened because %d stream slot filled.\n",
filename,index);
exit(ERROR_BOUNDS);
}
if (Stack_Stream_Current!=index) pushstream();
current_read_byte=0;
read_position = -1;
if ((srin = fopen(filename,"rb"))==NULL)
{
WHEREAMI();
printf("Cannot read input file %s.\n",
filename);
exit(ERROR_INIT_FILE);
}
CleartoResync=0;
ResyncEnable=0;
ResyncCount=0;
LastKnownResync=0;
EndofFile=0;
EndofImage=1; /* We start after "virtual" end of previous image */
Stack_Stream_Current= index;
Stack_Stream_Active[index]=1;
}
/*BFUNC
mrclose() closes the input read stream.
EFUNC*/
void mrclose()
{
BEGIN("mrclose")
fclose(srin);
srin=NULL;
if (swout==NULL)
{
Stack_Stream_Active[Stack_Stream_Current]=0;
Stack_Stream_Current= -1;
}
}
/*BFUNC
mwopen() opens the stream for writing. Note that reading and
writing can occur simultaneously because the read and write
routines are independently buffered.
EFUNC*/
void mwopen(filename,index)
char *filename;
int index;
{
BEGIN("mwopen")
if (Stack_Stream_Active[index])
{
WHEREAMI();
printf("%s cannot be opened because %d stream slot filled.\n",
filename,index);
exit(ERROR_BOUNDS);
}
if ((Stack_Stream_Current!=index)) pushstream();
current_write_byte=0;
write_position=7;
if ((swout = fopen(filename,"wb+"))==NULL)
{
WHEREAMI();
printf("Cannot open output file %s.\n",filename);
exit(ERROR_INIT_FILE);
}
Stack_Stream_Current= index;
Stack_Stream_Active[index]=1;
}
/*BFUNC
swbytealign() flushes the current bit-buffered byte out to the stream.
This is used before marker codes.
EFUNC*/
void swbytealign()
{
BEGIN("swbytealign")
if (write_position !=7)
{
current_write_byte |= lmask[write_position];
pputc(current_write_byte);
write_position=7;
current_write_byte=0;
}
}
/*BFUNC
mwclose() closes the stream that has been opened for writing.
EFUNC*/
void mwclose()
{
BEGIN("mwclose")
swbytealign();
fclose(swout);
swout=NULL;
if (srin==NULL)
{
Stack_Stream_Active[Stack_Stream_Current]=0;
Stack_Stream_Current= -1;
}
}
/*BFUNC
mwtell() returns the bit position on the write stream.
EFUNC*/
long mwtell()
{
BEGIN("mwtell")
return((ftell(swout)<<3) + (7 - write_position));
}
/*BFUNC
mrtell() returns the bit position on the read stream.
EFUNC*/
long mrtell()
{
BEGIN("mrtell")
return((ftell(srin)<<3) - (read_position+1));
}
/*BFUNC
mwseek returns the bit position on the write stream.
EFUNC*/
void mwseek(distance)
long distance;
{
BEGIN("mwseek")
int length;
if (write_position!=7) /* Must flush out current byte */
{
putc(current_write_byte,swout);
}
fseek(swout,0,2L); /* Find end */
length = ftell(swout);
fseek(swout,((distance+7)>>3),0L);
if ((length<<3) <= distance) /* Make sure we read clean stuff */
{
current_write_byte = 0;
write_position = 7 - (distance & 0x7);
}
else
{
current_write_byte = getc(swout); /* if within bounds, then read byte */
write_position = 7 - (distance & 0x7);
fseek(swout,((distance+7)>>3),0L); /* Reset seek pointer for write */
}
}
/*BFUNC
mrseek() jumps to a bit position on the read stream.
EFUNC*/
void mrseek(distance)
long distance;
{
BEGIN("mrseek")
fseek(srin,(distance>>3),0L); /* Go to location */
current_read_byte = bgetc(); /* read byte in */
read_position = 7 - (distance % 8);
}
/*BFUNC
megetb() gets a bit from the read stream.
EFUNC*/
int megetb()
{
BEGIN("megetb")
if (read_position < 0)
{
current_read_byte = pgetc();
read_position=7;
}
if (current_read_byte&bit_set_mask[read_position--])
{
return(1);
}
return(0);
}
/*BFUNC
meputv() puts n bits from b onto the writer stream.
EFUNC*/
void meputv(n,b)
int n;
int b;
{
BEGIN("meputv")
int p;
n--;
b &= lmask[n];
p = n - write_position;
if (!p) /* Can do parallel save immediately */
{
current_write_byte |= b;
pputc(current_write_byte);
current_write_byte = 0;
write_position = 7;
return;
}
else if (p < 0) /* if can fit, we have to shift byte */
{
p = -p;
current_write_byte |= (b << p);
write_position = p-1;
return;
}
current_write_byte |= (b >> p); /* cannot fit. we must do putc's */
pputc(current_write_byte); /* Save off remainder */
while(p > 7) /* Save off bytes while remaining > 7 */
{
p -= 8;
current_write_byte = (b >> p) & lmask[7];
pputc(current_write_byte);
}
if (!p) /* If zero then reset position */
{
write_position = 7;
current_write_byte = 0;
}
else /* Otherwise reset write byte buffer */
{
write_position = 8-p;
current_write_byte = (b << write_position) & lmask[7];
write_position--;
}
}
/*BFUNC
megetv() gets n bits from the read stream and returns it.
EFUNC*/
int megetv(n)
int n;
{
BEGIN("megetv")
int p,rv;
n--;
p = n-read_position;
while(p > 0)
{
if (read_position>23) /* If byte buffer contains almost entire word */
{
rv = (current_read_byte << p); /* Manipulate buffer */
current_read_byte = pgetc(); /* Change read bytes */
rv |= (current_read_byte >> (8-p));
read_position = 7-p;
return(rv & lmask[n]); /* Can return pending residual val */
}
current_read_byte = (current_read_byte << 8) | pgetc();
read_position += 8; /* else shift in new information */
p -= 8;
}
if (!p) /* If position is zero */
{
read_position = -1; /* Can return current byte */
return(current_read_byte & lmask[n]);
}
p = -p; /* Else reverse position and shift */
read_position = p-1;
return((current_read_byte >> p) & lmask[n]);
}
/*BFUNC
DoMarker() performs marker analysis. We assume that the Current Marker
head has been read (0xFF) plus top information is at
marker\_read\_byte.
EFUNC*/
int DoMarker()
{
BEGIN("DoMarker")
int i,hin,lon,marker,length;
current_read_byte = 0;
read_position= -1; /* Make sure we are byte-flush. */
while(marker_read_byte==MARKER_FIL) /* Get rid of FIL markers */
{
#ifdef VERSION_1_0
if ((marker_read_byte = bgetc())!=MARKER_MARKER)
{
WHEREAMI();
printf("Unknown FIL marker. Bypassing.\n");
ErrorValue = ERROR_MARKER;
return(0);
}
#endif
marker_read_byte = bgetc();
}
lon = marker_read_byte & 0x0f; /* Segregate between hi and lo */
hin = (marker_read_byte>>4) & 0x0f; /* nybbles for the marker read byte */
marker = marker_read_byte;
if (InResync)
{
if ((marker <0xd0)||(marker>0xd7))
{
WHEREAMI();
printf("Illegal resync marker found.\n");
return(0);
}
}
switch(hin) /* Pretty much self explanatory */
{
case 0x0c: /* Frame Style Marker */
switch(lon)
{
case 0x04:
ReadDht();
break;
case 0x00:
case 0x01:
case 0x03:
ReadSof(lon);
break;
case 0x08:
case 0x09:
case 0x0a:
case 0x0b:
case 0x0c:
case 0x0d:
case 0x0e:
case 0x0f:
WHEREAMI();
printf("Arithmetic coding not supported.\n");
length = bgetw();
for(i=2;i<length;i++) /* Length adds 2 bytes itself */
bgetc();
break;
case 0x02:
case 0x05:
case 0x06:
case 0x07:
default:
WHEREAMI();
printf("Frame type %x not supported.\n",lon);
length = bgetw();
for(i=2;i<length;i++) /* Length adds 2 bytes itself */
bgetc();
break;
}
break;
case 0x0d: /* Resync Marker */
if (lon > 7)
{
switch(lon)
{
case 0x08: /* Start of Image */
EndofImage=0; /* If End of Image occurs */
CImage->ImageSequence++; /* reset, and increment sequence */
break;
case 0x09: /* End of Image */
EndofImage=1;
break;
case 0x0a:
ResyncCount=0; /* SOS clears the resync count */
ReadSos();
break;
case 0x0b:
ReadDqt();
break;
case 0x0c:
ReadDnl();
break;
case 0x0d:
ReadDri();
break;
default:
WHEREAMI();
printf("Hierarchical markers found.\n");
length = bgetw();
for(i=2;i<length;i++) /* Length adds 2 bytes itself */
{
bgetc();
}
break;
}
}
break;
case 0x0e: /* Application Specific */
length = bgetw();
for(i=2;i<length;i++) /* Length adds 2 bytes itself */
bgetc();
break;
case 0x0f: /* JPEG Specific */
length = bgetw();
for(i=2;i<length;i++) /* Length adds 2 bytes itself */
bgetc();
break;
default:
WHEREAMI();
printf("Bad marker byte %d.\n",marker);
Resync();
ErrorValue = ERROR_MARKER;
return(-1);
break;
}
return(marker);
}
/*BFUNC
ScreenMarker() looks to see what marker is present on the stream. It
returns with the marker value read.
EFUNC*/
int ScreenMarker()
{
BEGIN("ScreenMarker")
if (read_position!=7) /* Already read byte */
{
current_read_byte = 0;
read_position= -1; /* Consume byte to be flush */
if ((marker_read_byte=bgetc())==(unsigned int)EOF)
{
EndofFile=2;
return(EOF);
}
}
else /* If flush, then marker byte is current read byte */
{
marker_read_byte = current_read_byte;
}
if (marker_read_byte!=MARKER_MARKER) /* Not a marker, return -1. */
{
current_read_byte = marker_read_byte;
read_position=7;
return(-1);
}
while((marker_read_byte = bgetc())==MARKER_FIL)
{ /* Get rid of FIL markers */
if ((marker_read_byte = bgetc())!=MARKER_MARKER)
{
WHEREAMI();
printf("Unattached FIL marker.\n");
ErrorValue = ERROR_MARKER;
return(-1);
}
if (marker_read_byte == (unsigned int)EOF) /* Found end of file */
{
EndofFile=2;
return(EOF);
}
marker_read_byte = bgetc(); /* Otherwise read another byte */
} /* Call processor for markers */
if (marker_read_byte) return(DoMarker());
else /* Is a FF00 so don't process */
{
current_read_byte=MARKER_MARKER; /* 255 actually read */
read_position=7;
return(-1);
}
}
/*BFUNC
Resync() does a resync action on the stream. This involves searching
for the next resync byte.
EFUNC*/
void Resync()
{
BEGIN("Resync")
if (!ResyncEnable)
{
WHEREAMI();
printf("Resync without resync enabled\n");
printf("Fatal error.\n");
TerminateFile();
exit(ERROR_UNRECOVERABLE);
}
WHEREAMI();
printf("Attempting resynchronization.\n");
do
{
while((marker_read_byte = bgetc())!=MARKER_MARKER)
{
if (marker_read_byte==(unsigned int)EOF)
{
WHEREAMI();
printf("Attempt to resync at end of file.\n");
printf("Sorry.\n");
TerminateFile();
exit(ERROR_PREMATURE_EOF);
}
}
}
while(((marker_read_byte = bgetc()) & MARKER_RSC_MASK)!=MARKER_RSC);
LastKnownResync = marker_read_byte & 0x07; /* Set up currently read */
WHEREAMI(); /* resync byte as future ref */
printf("Resync successful!\n");
/*
In general, we assume that we must add black space
until resynchronization. This is consistent under both
byte loss, byte gain, and byte corruption.
We assume corruption does not create new markers with
an RSC value--if so, we are probably dead, anyways.
*/
CleartoResync=1;
ResyncCount = (LastKnownResync+1)&0x07;
current_read_byte = 0;
read_position = -1;
ResetCodec(); /* Reset the codec incase in a non-local jump. */
printf("ResyncCount: %d LastKnownResync: %d\n",
ResyncCount,LastKnownResync);
}
/*BFUNC
WriteResync() writes a resync marker out to the write stream.
EFUNC*/
void WriteResync()
{
BEGIN("WriteResync")
swbytealign(); /* This procedure writes a byte-aligned */
bputc(MARKER_MARKER); /* resync marker. */
bputc((MARKER_RSC|(ResyncCount & 0x07)));
ResyncCount = (ResyncCount + 1) & 0x07;
}
/*BFUNC
ReadResync() looks for a resync marker on the stream. It returns a 0
if successful and a -1 if a search pass was required.
EFUNC*/
int ReadResync()
{
BEGIN("ReadResync")
int ValueRead;
if (Robust) InResync=1;
while((ValueRead = ScreenMarker()) >= 0)
{
if ((ValueRead & MARKER_RSC_MASK)!=MARKER_RSC) /* Strange marker found */
{
if (ValueRead != MARKER_DNL) /* DNL only other possibility */
{ /* actually excluded, never reached */
WHEREAMI(); /* 11/19/91 ACH */
printf("Non-Resync marker found for resync.\n");
printf("Trying again.\n");
}
}
else
{
ValueRead = ValueRead & 0x07; /* If so, then check resync count */
if (ValueRead != ResyncCount)
{
WHEREAMI();
printf("Bad resync counter. No search done.\n");
}
ResyncCount = (ResyncCount+1)&0x07;
/* Flush spurious markers. */
while((ValueRead = ScreenMarker()) >= 0);
InResync=0;
return(0);
}
}
WHEREAMI();
printf("Anticipated resync not found.\n");
Resync();
InResync=0;
return(-1);
}
/*BFUNC
ScreenAllMarker() looks for all the markers on the stream. It returns
a 0 if a marker has been found, -1 if no markers exist.
EFUNC*/
int ScreenAllMarker()
{
BEGIN("ScreenAllMarker")
if (ScreenMarker()<0)
{
return(-1);
}
while(ScreenMarker()>=0); /* Flush out all markers */
return(0);
}
/*BFUNC
DoAllMarker() is the same as ScreenAllMarker except we assume that the
prefix markerbyte (0xff) has been read and the second byte of the
prefix is in the marker\_byte variable. It returns a -1 if there is an
error in reading the marker.