HomeSort by relevance Sort by last modified time
    Searched defs:ExifSection (Results 1 - 2 of 2) sorted by null

  /external/jhead/
jpgfile.c 572 Section_t * ExifSection;
573 ExifSection = FindSection(M_EXIF);
574 ThumbnailPointer = ExifSection->Data+ImageInfo.ThumbnailOffset+8;
592 Section_t * ExifSection;
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->Data[0] = (uchar)(NewExifSize >> 8)
    [all...]
main.c 173 Section_t* ExifSection = FindSection(M_EXIF);
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->Size = NewExifSize
    [all...]

Completed in 38 milliseconds