From f6a660be56b2c045f682ae4adddbed6ea6a5b2d9 Mon Sep 17 00:00:00 2001 From: Matthias Vogelgesang Date: Tue, 14 Jul 2015 10:53:57 +0200 Subject: Fix version 6 decoding We have to skip the "tail" of every 640 columns. --- src/ufodecode.c | 4 ++++ test/ipedec.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ufodecode.c b/src/ufodecode.c index cfd9846..b03eb16 100644 --- a/src/ufodecode.c +++ b/src/ufodecode.c @@ -303,6 +303,10 @@ ufo_decode_frame_channels_v6 (UfoDecoder *decoder, uint16_t *pixel_buffer, uint3 #endif base += 6; + + if ((raw[base] & 0xFF000000) == 0xC0000000) { + base += 8; + } } return base; diff --git a/test/ipedec.c b/test/ipedec.c index 5099ff3..42a856c 100644 --- a/test/ipedec.c +++ b/test/ipedec.c @@ -8,7 +8,7 @@ #include #include "timer.h" -static const int MAX_ROWS = 3841; +static const int MAX_ROWS = 3842; typedef struct { int clear_frame; -- cgit v1.2.3