annotate x86/vp6dsp_sse2.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 17cc6df384a6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8818
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
1 /*
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
2 * vp6dsp SSE2 function declarations
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
3 * Copyright (c) 2009 Zuxy Meng <zuxy.meng@gmail.com>
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
4 *
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
5 * This file is part of FFmpeg.
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
6 *
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
11 *
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
15 * Lesser General Public License for more details.
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
16 *
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
20 */
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
21
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
22 #ifndef AVCODEC_X86_VP6DSP_SSE2_H
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
23 #define AVCODEC_X86_VP6DSP_SSE2_H
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
24
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
25 #include <stdint.h>
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
26
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
27 void ff_vp6_filter_diag4_sse2(uint8_t *dst, uint8_t *src, int stride,
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
28 const int16_t *h_weights,const int16_t *v_weights);
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
29
17cc6df384a6 add SSE2 version of vp6_filter_diag
aurel
parents:
diff changeset
30 #endif /* AVCODEC_X86_VP6DSP_SSE2_H */