Ignore:
File:
1 edited

Legend:

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

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