Changes in abi/include/abi/fourcc.h [1a522e5:aca642c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abi/include/abi/fourcc.h
r1a522e5 raca642c 36 36 #define ABI_FOURCC_H_ 37 37 38 #include <stdint.h> 39 38 40 #define FOURCC(a, b, c, d) \ 39 ((( UINT32_T) (a)) | (((UINT32_T) (b)) << 8) | \40 ((( UINT32_T) (c)) << 16) | (((UINT32_T) (d)) << 24))41 (((uint32_t) (a)) | (((uint32_t) (b)) << 8) | \ 42 (((uint32_t) (c)) << 16) | (((uint32_t) (d)) << 24)) 41 43 42 44 #define CC_COMPACT(a) \ 43 (( UINT32_T) (a) & 0x7f)45 ((uint32_t) (a) & 0x7f) 44 46 45 47 #define FOURCC_COMPACT(a, b, c, d) \
Note:
See TracChangeset
for help on using the changeset viewer.