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