/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-17 14:28:58 UTC
  • Revision ID: matthias.vogelgesang@kit.edu-20120717142858-9gsb7mux5vttdt31
Commit version 0.2 of libufodecode

Show diffs side-by-side

added added

removed removed

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