AOMedia Codec SDK
aom_integer.h
1/*
2 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
3 *
4 * This source code is subject to the terms of the BSD 2 Clause License and
5 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6 * was not distributed with this source code in the LICENSE file, you can
7 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8 * Media Patent License 1.0 was not distributed with this source code in the
9 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
10 */
11#ifndef AOM_AOM_AOM_INTEGER_H_
12#define AOM_AOM_AOM_INTEGER_H_
13
14/* get ptrdiff_t, size_t, wchar_t, NULL */
15#include <stddef.h>
16
17#if defined(_MSC_VER)
18#define AOM_FORCE_INLINE __forceinline
19#define AOM_INLINE __inline
20#else
21#define AOM_FORCE_INLINE __inline__ __attribute__((always_inline))
22#define AOM_INLINE inline
23#endif
24
25#if defined(AOM_EMULATE_INTTYPES)
26typedef signed char int8_t;
27typedef signed short int16_t;
28typedef signed int int32_t;
29
30typedef unsigned char uint8_t;
31typedef unsigned short uint16_t;
32typedef unsigned int uint32_t;
33
34#ifndef _UINTPTR_T_DEFINED
35typedef size_t uintptr_t;
36#endif
37
38#else
39
40/* Most platforms have the C99 standard integer types. */
41
42#if defined(__cplusplus)
43#if !defined(__STDC_FORMAT_MACROS)
44#define __STDC_FORMAT_MACROS
45#endif
46#if !defined(__STDC_LIMIT_MACROS)
47#define __STDC_LIMIT_MACROS
48#endif
49#endif // __cplusplus
50
51#include <stdint.h>
52
53#endif
54
55/* VS2010 defines stdint.h, but not inttypes.h */
56#if defined(_MSC_VER) && _MSC_VER < 1800
57#define PRId64 "I64d"
58#else
59#include <inttypes.h>
60#endif
61
62#if !defined(INT8_MAX)
63#define INT8_MAX 127
64#endif
65
66#if !defined(INT32_MAX)
67#define INT32_MAX 2147483647
68#endif
69
70#if !defined(INT32_MIN)
71#define INT32_MIN (-2147483647 - 1)
72#endif
73
74#define NELEMENTS(x) (int)(sizeof(x) / sizeof(x[0]))
75
76#if defined(__cplusplus)
77extern "C" {
78#endif // __cplusplus
79
80// Returns size of uint64_t when encoded using LEB128.
81size_t aom_uleb_size_in_bytes(uint64_t value);
82
83// Returns 0 on success, -1 on decode failure.
84// On success, 'value' stores the decoded LEB128 value and 'length' stores
85// the number of bytes decoded.
86int aom_uleb_decode(const uint8_t *buffer, size_t available, uint64_t *value,
87 size_t *length);
88
89// Encodes LEB128 integer. Returns 0 when successful, and -1 upon failure.
90int aom_uleb_encode(uint64_t value, size_t available, uint8_t *coded_value,
91 size_t *coded_size);
92
93// Encodes LEB128 integer to size specified. Returns 0 when successful, and -1
94// upon failure.
95// Note: This will write exactly pad_to_size bytes; if the value cannot be
96// encoded in this many bytes, then this will fail.
97int aom_uleb_encode_fixed_size(uint64_t value, size_t available,
98 size_t pad_to_size, uint8_t *coded_value,
99 size_t *coded_size);
100
101#if defined(__cplusplus)
102} // extern "C"
103#endif // __cplusplus
104
105#endif // AOM_AOM_AOM_INTEGER_H_