annotate x86/vp6dsp_mmx.h @ 12208:5d73c4b4cd37 libavcodec

Make ff_inverse stay with libavutil, and optional copy it to libavcodec. The ff_inverse table is used by FASTDIV macro, defined in libavutil, but up to now the table was defined only in libavcodec. After this change, the main copy of ff_inverse is part of libavutil (just like FASTDIV), but if CONFIG_SMALL is unset, then a different copy is made available to libavcodec, to avoid the performance penalty of using an external look up table. Dynamic linking works, because the libraries are linked with -Bsymbolic, so the local copy of the symbol has priority over the external; static linking works because the table is on a standalone object file in both libraries, so the linker is able to discard one of the two. Tested on Linux/x86-64 and Mac OS X/x86-64.
author flameeyes
date Wed, 21 Jul 2010 12:37:37 +0000
parents 492f8911992c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8817
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
1 /*
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
2 * vp6dsp MMX function declarations
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
3 * Copyright (c) 2009 Sebastien Lucas <sebastien.lucas@gmail.com>
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
4 *
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
5 * This file is part of FFmpeg.
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
6 *
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
11 *
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
15 * Lesser General Public License for more details.
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
16 *
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
20 */
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
21
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
22 #ifndef AVCODEC_X86_VP6DSP_MMX_H
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
23 #define AVCODEC_X86_VP6DSP_MMX_H
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
24
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
25 #include <stdint.h>
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
26
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
27 void ff_vp6_filter_diag4_mmx(uint8_t *dst, uint8_t *src, int stride,
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
28 const int16_t *h_weights,const int16_t *v_weights);
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
29
492f8911992c add MMX version of vp6_filter_diag
aurel
parents:
diff changeset
30 #endif /* AVCODEC_X86_VP6DSP_MMX_H */