#ifndef MEDIA_PARSERS_BIT_READER_MACROS_H_
#define MEDIA_PARSERS_BIT_READER_MACROS_H_
#define READ_BITS_OR_RETURN(num_bits, out) …
#define READ_BITS_AND_MINUS_BITS_READ_OR_RETURN(num_bits, out, \
num_bits_remain) …
#define SKIP_BITS_OR_RETURN(num_bits) …
#define READ_BOOL_OR_RETURN(out) …
#define READ_BOOL_AND_MINUS_BITS_READ_OR_RETURN(out, num_bits_remain) …
#define READ_UE_WITH_BITS_READ_OR_RETURN(out, bits_read) …
#define READ_UE_OR_RETURN(out) …
#define READ_UE_AND_MINUS_BITS_READ_OR_RETURN(out, num_bits_remain) …
#define READ_SE_OR_RETURN(out) …
#define IN_RANGE_OR_RETURN(val, min, max) …
#define TRUE_OR_RETURN(a) …
#define EQ_OR_RETURN(shdr1, shdr2, field) …
#define GT_OR_RETURN(val1, val2) …
#define LE_OR_RETURN(val1, val2) …
#define GE_OR_RETURN(val1, val2) …
#define BYTE_ALIGNMENT() …
#endif