afc24979fa
Revised also preview to remove bugs and add missing code Change-Id: I895a4c6f15e8875685930e173eb242888c73dac7
19 lines
533 B
C
19 lines
533 B
C
#ifndef ANDROID_HARDWARE_EXIFWRITER_H
|
|
#define ANDROID_HARDWARE_EXIFWRITER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct
|
|
{
|
|
uint32_t timestamp; /* seconds since 1/6/1980 */
|
|
double latitude; /* degrees, WGS ellipsoid */
|
|
double longitude; /* degrees */
|
|
int16_t altitude; /* meters */
|
|
} camera_position_type;
|
|
|
|
|
|
void writeExif( void *origData, void *destData , int origSize , uint32_t *resultSize, int orientation, camera_position_type *pt) ;
|
|
|
|
#endif
|
|
|