/alps/ufodecode

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/ufodecode
9 by Matthias Vogelgesang
Rename to `ufodecode`
1
#ifndef LIB_UFODECODE_PRIVATE_H
2
#define LIB_UFODECODE_PRIVATE_H
4 by Matthias Vogelgesang
Make ipedec a lib and executable
3
4
#include <stdbool.h>
5
32 by Matthias Vogelgesang
Commit version 0.2 of libufodecode
6
struct _UfoDecoder {
28 by Matthias Vogelgesang
Add verbosity flag to output frequency and frame
7
    int32_t     height;
8
    uint32_t    width;
9
    uint32_t   *raw;
10
    size_t      num_bytes; 
11
    uint32_t    current_pos;
4 by Matthias Vogelgesang
Make ipedec a lib and executable
12
};
13
14
15
#endif
16