blob: 8d7de1c317f86c0134a1aa8affe708cbd1ae4182 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef LIB_IPE_PRIVATE_H
#define LIB_IPE_PRIVATE_H
#include <stdbool.h>
struct ipe_decoder_t {
uint32_t height;
uint32_t *raw;
size_t num_bytes;
uint32_t current_pos;
};
#endif
|