00001
00002
00003
00004
00005 #ifndef IMGSTRUCT_INCL
00006 #define IMGSTRUCT_INCL 1
00007
00008 #define MAXPIXELS 16777216 // 4096*4096
00009
00010 typedef struct {
00011 int valid;
00012 uint32_t FSN;
00013 uint32_t FID;
00014 uint32_t APPID;
00015 int cropid;
00016 int lookupid;
00017 int compid;
00018 int tapcode;
00019 int nrow, ncol;
00020 int datavals;
00021 int missvals;
00022 int croppedvals;
00023 int npackets;
00024 int num_decomp_errors;
00025 int last_pix_decomp_error;
00026 char last_tlm_filename[128];
00027 TIME first_packet_time;
00028 unsigned short data[MAXPIXELS];
00029 } IMG;
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050 #endif