Home | History | Annotate | Download | only in jhead

Lines Matching refs:ExifSection

1086 void process_EXIF (unsigned char * ExifSection, unsigned int length)
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+8+a);
1609 int RemoveThumbnail(unsigned char * ExifSection)