Changeset aca642c in mainline for abi/include/abi/fourcc.h


Ignore:
Timestamp:
2017-06-02T06:17:24Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cbb89f2
Parents:
fb864d65
Message:

Headers should declare their dependencies.

File:
1 edited

Legend:

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

    rfb864d65 raca642c  
    3636#define ABI_FOURCC_H_
    3737
    38 #include "../../../common.h"
     38#include <stdint.h>
    3939
    4040#define FOURCC(a, b, c, d) \
    41         (((UINT32_T) (a)) | (((UINT32_T) (b)) << 8) | \
    42             (((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))
    4343
    4444#define CC_COMPACT(a) \
    45         ((UINT32_T) (a) & 0x7f)
     45        ((uint32_t) (a) & 0x7f)
    4646
    4747#define FOURCC_COMPACT(a, b, c, d) \
Note: See TracChangeset for help on using the changeset viewer.