]> jspc29.x-matter.uni-frankfurt.de Git - mvd_soft.git/commitdiff
C unpacker extract_info: interpret M-26 frame cntr correctly
authorPhilipp Klaus <philipp.klaus@gmail.com>
Fri, 2 Jun 2017 19:09:52 +0000 (21:09 +0200)
committerPhilipp Klaus <philipp.klaus@gmail.com>
Fri, 2 Jun 2017 19:09:52 +0000 (21:09 +0200)
normalmode/c_standalone/extract_info.c

index dc1aabe0cb8a4e0877d629f5d36ea21f604202c1..74cab5a30b2ccd896c6e21dca08e03528700fd17 100644 (file)
@@ -31,6 +31,7 @@ int read_frame(unsigned long *pos, FILE *ptr_file)
        else
                header_found = 0;
        fread(&frame_counter, sizeof(uint32_t), 1, ptr_file);
+       frame_counter = ((frame_counter & 0xffff)<<16) | ((frame_counter & 0xffff0000)>>16);
        frame_counter = ntohl(frame_counter);
        fread(&senlen, sizeof(uint16_t), 1, ptr_file);
        senlen = ntohs(senlen);