summaryrefslogtreecommitdiffstats
path: root/src/ufodecode-private.h
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2012-07-05 11:12:38 +0200
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2012-07-05 11:12:38 +0200
commit175df5819e126a4eea30b9c05d38fb504c958252 (patch)
tree465244d6747433a7d0e991abc1f58fe6cb28f06e /src/ufodecode-private.h
parentbd3224828f527f05fa84eb0d5bfaa2529f64145b (diff)
downloadufodecode-175df5819e126a4eea30b9c05d38fb504c958252.tar.gz
ufodecode-175df5819e126a4eea30b9c05d38fb504c958252.tar.bz2
ufodecode-175df5819e126a4eea30b9c05d38fb504c958252.tar.xz
ufodecode-175df5819e126a4eea30b9c05d38fb504c958252.zip
Add verbosity flag to output frequency and frame
Diffstat (limited to 'src/ufodecode-private.h')
-rw-r--r--src/ufodecode-private.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/ufodecode-private.h b/src/ufodecode-private.h
index 19746ce..4d0eb9b 100644
--- a/src/ufodecode-private.h
+++ b/src/ufodecode-private.h
@@ -4,11 +4,12 @@
#include <stdbool.h>
struct ufo_decoder_t {
- int32_t height;
- uint32_t width;
- uint32_t *raw;
- size_t num_bytes;
- uint32_t current_pos;
+ int32_t height;
+ uint32_t width;
+ uint32_t *raw;
+ size_t num_bytes;
+ uint32_t current_pos;
+ uint32_t old_time_stamp;
};