//--------------------------------------------------------------------------- void File_Jpeg::APP1() { //Parsing int64u Name; Get_C6(Name, "Name"); if (Name==CC6("Exif\0\0")) APP1_EXIF(); }
//--------------------------------------------------------------------------- void File_Jpeg::APP1() { //Parsing int64u Name; Get_C6(Name, "Name"); switch (Name) { case 0x457869660000LL : APP1_EXIF(); break; //"Exif\0\0" default : Skip_XX(Element_Size-Element_Offset, "Data"); } }