repo.or.cz
/
cinelerra_cv
/
ct.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git]
/
cinelerra
/
videodevfix.h
blob
505a083a02fcde9c5c38f61b91fb897fcf6a34fb
1
#ifndef VIDEODEVFIX_H
2
#define VIDEODEVFIX_H
3
4
5
#include <sys/types.h>
6
7
typedef
int8_t
__s8
;
8
typedef
u_int8_t __u8
;
9
typedef
int16_t
__s16
;
10
typedef
u_int16_t __u16
;
11
typedef
int32_t
__s32
;
12
typedef
u_int32_t __u32
;
13
typedef
int64_t
__s64
;
14
typedef
u_int64_t __u64
;
15
16
17
18
19
#endif
20
/*
21
// Local Variables:
22
// mode: C++
23
// c-file-style: "linux"
24
// End:
25
*/