/alps/ufodecode

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/ufodecode

« back to all changes in this revision

Viewing changes to src/ufodecode-private.h

  • Committer: Matthias Vogelgesang
  • Date: 2012-07-05 09:12:38 UTC
  • Revision ID: matthias.vogelgesang@kit.edu-20120705091238-iqkhneqm6g7u1fzp
Add verbosity flag to output frequency and frame

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#include <stdbool.h>
5
5
 
6
6
struct ufo_decoder_t {
7
 
    int32_t height;
8
 
    uint32_t width;
9
 
    uint32_t *raw;
10
 
    size_t num_bytes; 
11
 
    uint32_t current_pos;
 
7
    int32_t     height;
 
8
    uint32_t    width;
 
9
    uint32_t   *raw;
 
10
    size_t      num_bytes; 
 
11
    uint32_t    current_pos;
 
12
    uint32_t    old_time_stamp;
12
13
};
13
14
 
14
15