Searched refs:ExifSection (Results 1 - 5 of 5) sorted by relevance

/external/jhead/
H A Djpgfile.c572 Section_t * ExifSection; local
573 ExifSection = FindSection(M_EXIF);
574 ThumbnailPointer = ExifSection->Data+ImageInfo.ThumbnailOffset+8;
592 Section_t * ExifSection; local
625 ExifSection = FindSection(M_EXIF);
628 ExifSection->Data = (uchar *)realloc(ExifSection->Data, NewExifSize);
630 ThumbnailPointer = ExifSection->Data+ImageInfo.ThumbnailOffset+8;
638 Put32u(ExifSection->Data+ImageInfo.ThumbnailSizeOffset+8, ThumbLen);
640 ExifSection
657 Section_t * ExifSection; local
[all...]
H A Dmain.c173 Section_t* ExifSection = FindSection(M_EXIF); local
174 if (ExifSection == NULL) {
178 ExifSection->Data = (uchar *)realloc(ExifSection->Data, NewExifSize);
179 if (ExifSection->Data == NULL) {
182 uchar* ThumbnailPointer = ExifSection->Data+ImageInfo.ThumbnailOffset+8;
188 Put32u(ExifSection->Data+ImageInfo.ThumbnailSizeOffset+8, thumbnailLen);
190 ExifSection->Data[0] = (uchar)(NewExifSize >> 8);
191 ExifSection->Data[1] = (uchar)NewExifSize;
192 ExifSection
312 Section_t* ExifSection = FindSection(M_EXIF); local
446 Section_t* ExifSection = FindSection(M_EXIF); local
[all...]
H A Dexif.c1061 void process_EXIF (unsigned char * ExifSection, unsigned int length) argument
1076 if (memcmp(ExifSection+2, ExifHeader,6)){
1082 if (memcmp(ExifSection+8,"II",2) == 0){
1086 if (memcmp(ExifSection+8,"MM",2) == 0){
1096 if (Get16u(ExifSection+10) != 0x2a){
1101 FirstOffset = Get32u(ExifSection+12);
1112 ProcessExifDir(ExifSection+8+FirstOffset, ExifSection+8, length-8, 0);
1123 // for (b=0;b<10;b++) printf(" %02x",*(ExifSection+8+a+b));
1127 unsigned char c = *(ExifSection
1584 RemoveThumbnail(unsigned char * ExifSection) argument
[all...]
H A Djhead.h174 int RemoveThumbnail(unsigned char * ExifSection);
H A Djhead.c1058 Section_t * ExifSection;
1092 ExifSection = FindSection(M_EXIF);
1096 Pointer = ExifSection->Data+ImageInfo.DateTimeOffsets[a]+8;

Completed in 103 milliseconds