Home | History | Annotate | Download | only in jhead

Lines Matching refs:marker

43 // Process a COM marker.
44 // We want to print out the marker contents as legible text;
73 printf("COM marker comment: %s\n",Comment);
82 // Process a SOFn marker. This is useful for the image dimensions
84 static void process_SOFn (const uchar * Data, int marker)
99 ImageInfo.Process = marker;
127 // Parse the marker stream until SOS or EOI is seen;
141 int marker = 0;
148 marker = fgetc(infile);
149 if (marker != 0xff) break;
158 Sections[SectionsRead].Type = marker;
168 // ErrFatal("invalid marker");
169 ALOGE("invalid marker");
195 printf("reading marker %d", marker);
196 switch(marker){
249 // marker instead, althogh ACDsee will write images with both markers.
250 // this program will re-create this marker on absence of exif marker.
256 // There can be different section using the same marker.
301 process_SOFn(Data, marker);
306 printf("Jpeg section marker 0x%02x size %d\n",marker, itemlen);
315 // Parse the marker buffer until SOS or EOI is seen;
339 int marker = 0;
346 marker = buffer[pos++];
347 if (marker != 0xff) break;
355 Sections[SectionsRead].Type = marker;
365 ALOGE("invalid marker");
392 printf("reading marker %d", marker);
393 switch(marker){
440 // marker instead, althogh ACDsee will write images with both markers.
441 // this program will re-create this marker on absence of exif marker.
447 // There can be different section using the same marker.
492 process_SOFn(Data, marker);
497 ALOGD("Jpeg section marker 0x%02x size %d\n",marker, itemlen);
804 // Initial static jpeg marker.
809 // The image must start with an exif or jfif marker. If we threw those away, create one.
866 // Initial static jpeg marker.
871 // The image must start with an exif or jfif marker. If we threw those away, create one.