00001 00014 #ifndef _IO_IMAGE_H_ 00015 #define _IO_IMAGE_H_ 00016 00017 #include "defines.h" 00018 #include "frame.h" 00019 00020 typedef struct image_data 00021 { 00022 FrameFormat format; 00023 // Standard data 00024 imgpel **frm_data[MAX_PLANE]; 00025 imgpel **top_data[MAX_PLANE]; 00026 imgpel **bot_data[MAX_PLANE]; 00027 00031 uint16 **frm_uint16[MAX_PLANE]; 00032 uint16 **top_uint16[MAX_PLANE]; 00033 uint16 **bot_uint16[MAX_PLANE]; 00034 } ImageData; 00035 00036 #endif 00037