Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • abi/include/abi/fourcc.h

    raca642c r1a522e5  
    3636#define ABI_FOURCC_H_
    3737
    38 #include <stdint.h>
    39 
    4038#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))
    4341
    4442#define CC_COMPACT(a) \
    45         ((uint32_t) (a) & 0x7f)
     43        ((UINT32_T) (a) & 0x7f)
    4644
    4745#define FOURCC_COMPACT(a, b, c, d) \
Note: See TracChangeset for help on using the changeset viewer.