]> git.sesse.net Git - ffmpeg/blob - libavcodec/bfin/config_bfin.h
Declare WMV1/WMV2/VC-1 decoder dependency on the H.263 decoder in configure.
[ffmpeg] / libavcodec / bfin / config_bfin.h
1 /*
2  * Copyright (C) 2007 Marc Hoffman <marc.hoffman@analog.com>
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 /*
21    low level assembler interface wrapper
22
23 DEFUN(put_pixels_clamped,mL1,
24         (DCTELEM *block, uint8_t *dest, int line_size)):
25
26       body
27
28       rts;
29 */
30
31 #ifndef AVCODEC_BFIN_CONFIG_BFIN_H
32 #define AVCODEC_BFIN_CONFIG_BFIN_H
33
34 #ifndef DEFUN
35
36 #define mL3 .text
37 #ifndef mL1
38 #ifdef __FDPIC__
39 #define mL1 .l1.text
40 #else
41 #define mL1 mL3
42 #endif
43 #endif
44
45 #define DEFUN(fname,where,interface) \
46         .section where;              \
47         .global _ff_bfin_ ## fname ; \
48         .type _ff_bfin_ ## fname, STT_FUNC; \
49         .align 8;                    \
50         _ff_bfin_ ## fname
51
52 #define DEFUN_END(fname) \
53         .size _ff_bfin_ ## fname, . - _ff_bfin_ ## fname
54
55 #ifdef __FDPIC__
56 #define RELOC(reg,got,obj) reg = [got + obj@GOT17M4]
57 #else
58 #define RELOC(reg,got,obj) reg.L = obj; reg.H = obj
59 #endif
60
61 #endif
62
63 #endif /* AVCODEC_BFIN_CONFIG_BFIN_H */