Searched defs:ExifSection (Results 1 - 3 of 3) sorted by relevance

/external/jhead/
H A Djpgfile.c576 Section_t * ExifSection; local
577 ExifSection = FindSection(M_EXIF);
578 ThumbnailPointer = ExifSection->Data+ImageInfo.ThumbnailOffset+8;
596 Section_t * ExifSection; local
629 ExifSection = FindSection(M_EXIF);
632 ExifSection->Data = (uchar *)realloc(ExifSection->Data, NewExifSize);
634 ThumbnailPointer = ExifSection->Data+ImageInfo.ThumbnailOffset+8;
642 Put32u(ExifSection->Data+ImageInfo.ThumbnailSizeOffset+8, ThumbLen);
644 ExifSection
661 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
483 Section_t* ExifSection = FindSection(M_EXIF); local
[all...]
H A Dexif.c1086 void process_EXIF (unsigned char * ExifSection, unsigned int length) argument
1101 if (memcmp(ExifSection+2, ExifHeader,6)){
1107 if (memcmp(ExifSection+8,"II",2) == 0){
1111 if (memcmp(ExifSection+8,"MM",2) == 0){
1121 if (Get16u(ExifSection+10) != 0x2a){
1126 FirstOffset = Get32u(ExifSection+12);
1137 ProcessExifDir(ExifSection+8+FirstOffset, ExifSection+8, length-8, 0);
1148 // for (b=0;b<10;b++) printf(" %02x",*(ExifSection+8+a+b));
1152 unsigned char c = *(ExifSection
1609 RemoveThumbnail(unsigned char * ExifSection) argument
[all...]

Completed in 1487 milliseconds