summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/vl/vp8/vp8_mem.h
blob: 1adde1e74bfadee21356e093a38bf328b70493bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
 *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */


#ifndef VP8_MEM_H
#define VP8_MEM_H

#include <string.h>
#include <stdlib.h>
#include <stddef.h>
#include <stdio.h>
#include <assert.h>

#if defined(__cplusplus)
extern "C" {
#endif

/**
 * Use this define on systems where unaligned int reads and writes are
 * not allowed, i.e. ARM architectures.
 */
//#define MUST_BE_ALIGNED

#if defined(__GNUC__) && __GNUC__
    #define DECLARE_ALIGNED(n,typ,val) typ val __attribute__ ((aligned (n)))
#else
    #warning No alignment directives known for this compiler.
    #define DECLARE_ALIGNED(n,typ,val) typ val
#endif

void *vpx_memalign(size_t align, size_t size);
void *vpx_calloc(size_t num, size_t size);
void vpx_free(void *memblk);

#if defined(__cplusplus)
}
#endif

#endif /* VP8_MEM_H */