Searched defs:NewExifSize (Results 1 - 2 of 2) sorted by relevance

/external/jhead/
H A Djpgfile.c595 int NewExifSize; local
631 NewExifSize = ImageInfo.ThumbnailOffset+8+ThumbLen;
632 ExifSection->Data = (uchar *)realloc(ExifSection->Data, NewExifSize);
644 ExifSection->Data[0] = (uchar)(NewExifSize >> 8);
645 ExifSection->Data[1] = (uchar)NewExifSize;
646 ExifSection->Size = NewExifSize;
660 int ThumbLen, NewExifSize; local
711 NewExifSize = ImageInfo.ThumbnailOffset+8+ThumbLen;
712 ExifSection->Data = (uchar *)realloc(ExifSection->Data, NewExifSize);
725 ExifSection->Data[0] = (uchar)(NewExifSize >>
[all...]
H A Dmain.c177 int NewExifSize = ImageInfo.ThumbnailOffset+8+thumbnailLen; local
178 ExifSection->Data = (uchar *)realloc(ExifSection->Data, NewExifSize);
190 ExifSection->Data[0] = (uchar)(NewExifSize >> 8);
191 ExifSection->Data[1] = (uchar)NewExifSize;
192 ExifSection->Size = NewExifSize;

Completed in 63 milliseconds