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

  /external/jhead/
jpgfile.c 381 Section_t * ExifSection;
382 ExifSection = FindSection(M_EXIF);
383 ThumbnailPointer = ExifSection->Data+ImageInfo.ThumbnailOffset+8;
402 Section_t * ExifSection;
450 ExifSection = FindSection(M_EXIF);
453 ExifSection->Data = (uchar *)realloc(ExifSection->Data, NewExifSize);
455 ThumbnailPointer = ExifSection->Data+ImageInfo.ThumbnailOffset+8;
464 Put32u(ExifSection->Data+ImageInfo.ThumbnailSizeOffset+8, ThumbLen);
466 ExifSection->Data[0] = (uchar)(NewExifSize >> 8)
    [all...]
main.c 172 Section_t* ExifSection = FindSection(M_EXIF);
173 if (ExifSection == NULL) {
177 ExifSection->Data = (uchar *)realloc(ExifSection->Data, NewExifSize);
178 if (ExifSection->Data == NULL) {
181 uchar* ThumbnailPointer = ExifSection->Data+ImageInfo.ThumbnailOffset+8;
187 Put32u(ExifSection->Data+ImageInfo.ThumbnailSizeOffset+8, thumbnailLen);
189 ExifSection->Data[0] = (uchar)(NewExifSize >> 8);
190 ExifSection->Data[1] = (uchar)NewExifSize;
191 ExifSection->Size = NewExifSize
    [all...]

Completed in 466 milliseconds