annotate arm/dsputil_init_neon.c @ 11243:e71b0be9ac79 libavcodec

ARM: NEON scalarproduct_int16 and scalarproduct_and_madd_int16 Patch by Kostya, minor fixes by me.
author mru
date Mon, 22 Feb 2010 12:20:31 +0000
parents 5506cbb012b4
children 2a4dc3c0b012
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8334
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
1 /*
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
2 * ARM NEON optimised DSP functions
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
3 * Copyright (c) 2008 Mans Rullgard <mans@mansr.com>
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
4 *
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
5 * This file is part of FFmpeg.
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
6 *
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
11 *
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
15 * Lesser General Public License for more details.
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
16 *
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
20 */
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
21
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
22 #include <stdint.h>
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
23
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
24 #include "libavcodec/avcodec.h"
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
25 #include "libavcodec/dsputil.h"
10359
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
26 #include "dsputil_arm.h"
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
27
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
28 void ff_simple_idct_neon(DCTELEM *data);
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
29 void ff_simple_idct_put_neon(uint8_t *dest, int line_size, DCTELEM *data);
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
30 void ff_simple_idct_add_neon(uint8_t *dest, int line_size, DCTELEM *data);
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
31
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
32 void ff_vp3_idct_neon(DCTELEM *data);
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
33 void ff_vp3_idct_put_neon(uint8_t *dest, int line_size, DCTELEM *data);
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
34 void ff_vp3_idct_add_neon(uint8_t *dest, int line_size, DCTELEM *data);
8334
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
35
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
36 void ff_put_pixels16_neon(uint8_t *, const uint8_t *, int, int);
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
37 void ff_put_pixels16_x2_neon(uint8_t *, const uint8_t *, int, int);
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
38 void ff_put_pixels16_y2_neon(uint8_t *, const uint8_t *, int, int);
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
39 void ff_put_pixels16_xy2_neon(uint8_t *, const uint8_t *, int, int);
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
40 void ff_put_pixels8_neon(uint8_t *, const uint8_t *, int, int);
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
41 void ff_put_pixels8_x2_neon(uint8_t *, const uint8_t *, int, int);
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
42 void ff_put_pixels8_y2_neon(uint8_t *, const uint8_t *, int, int);
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
43 void ff_put_pixels8_xy2_neon(uint8_t *, const uint8_t *, int, int);
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
44 void ff_put_pixels16_x2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
45 void ff_put_pixels16_y2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
46 void ff_put_pixels16_xy2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
47 void ff_put_pixels8_x2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
48 void ff_put_pixels8_y2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
49 void ff_put_pixels8_xy2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
50
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
51 void ff_avg_pixels16_neon(uint8_t *, const uint8_t *, int, int);
10375
199949177888 ARM: NEON avg_pixels8 and avg_h264_qpel8_mc00
mru
parents: 10362
diff changeset
52 void ff_avg_pixels8_neon(uint8_t *, const uint8_t *, int, int);
8334
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
53
9344
9ea1ea6db616 ARM: NEON optimised add_pixels_clamped
mru
parents: 8698
diff changeset
54 void ff_add_pixels_clamped_neon(const DCTELEM *, uint8_t *, int);
9580
51e8f5ab8f1e ARM: NEON put_pixels_clamped
conrad
parents: 9345
diff changeset
55 void ff_put_pixels_clamped_neon(const DCTELEM *, uint8_t *, int);
9345
e0a7a6338526 ARM: NEON optimized put_signed_pixels_clamped
conrad
parents: 9344
diff changeset
56 void ff_put_signed_pixels_clamped_neon(const DCTELEM *, uint8_t *, int);
9344
9ea1ea6db616 ARM: NEON optimised add_pixels_clamped
mru
parents: 8698
diff changeset
57
8334
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
58 void ff_put_h264_qpel16_mc00_neon(uint8_t *, uint8_t *, int);
8338
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
59 void ff_put_h264_qpel16_mc10_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
60 void ff_put_h264_qpel16_mc20_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
61 void ff_put_h264_qpel16_mc30_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
62 void ff_put_h264_qpel16_mc01_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
63 void ff_put_h264_qpel16_mc11_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
64 void ff_put_h264_qpel16_mc21_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
65 void ff_put_h264_qpel16_mc31_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
66 void ff_put_h264_qpel16_mc02_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
67 void ff_put_h264_qpel16_mc12_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
68 void ff_put_h264_qpel16_mc22_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
69 void ff_put_h264_qpel16_mc32_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
70 void ff_put_h264_qpel16_mc03_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
71 void ff_put_h264_qpel16_mc13_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
72 void ff_put_h264_qpel16_mc23_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
73 void ff_put_h264_qpel16_mc33_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
74
8334
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
75 void ff_put_h264_qpel8_mc00_neon(uint8_t *, uint8_t *, int);
8338
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
76 void ff_put_h264_qpel8_mc10_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
77 void ff_put_h264_qpel8_mc20_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
78 void ff_put_h264_qpel8_mc30_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
79 void ff_put_h264_qpel8_mc01_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
80 void ff_put_h264_qpel8_mc11_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
81 void ff_put_h264_qpel8_mc21_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
82 void ff_put_h264_qpel8_mc31_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
83 void ff_put_h264_qpel8_mc02_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
84 void ff_put_h264_qpel8_mc12_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
85 void ff_put_h264_qpel8_mc22_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
86 void ff_put_h264_qpel8_mc32_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
87 void ff_put_h264_qpel8_mc03_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
88 void ff_put_h264_qpel8_mc13_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
89 void ff_put_h264_qpel8_mc23_neon(uint8_t *, uint8_t *, int);
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
90 void ff_put_h264_qpel8_mc33_neon(uint8_t *, uint8_t *, int);
8334
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
91
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
92 void ff_avg_h264_qpel16_mc00_neon(uint8_t *, uint8_t *, int);
10616
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
93 void ff_avg_h264_qpel16_mc10_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
94 void ff_avg_h264_qpel16_mc20_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
95 void ff_avg_h264_qpel16_mc30_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
96 void ff_avg_h264_qpel16_mc01_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
97 void ff_avg_h264_qpel16_mc11_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
98 void ff_avg_h264_qpel16_mc21_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
99 void ff_avg_h264_qpel16_mc31_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
100 void ff_avg_h264_qpel16_mc02_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
101 void ff_avg_h264_qpel16_mc12_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
102 void ff_avg_h264_qpel16_mc22_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
103 void ff_avg_h264_qpel16_mc32_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
104 void ff_avg_h264_qpel16_mc03_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
105 void ff_avg_h264_qpel16_mc13_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
106 void ff_avg_h264_qpel16_mc23_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
107 void ff_avg_h264_qpel16_mc33_neon(uint8_t *, uint8_t *, int);
8334
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
108
10375
199949177888 ARM: NEON avg_pixels8 and avg_h264_qpel8_mc00
mru
parents: 10362
diff changeset
109 void ff_avg_h264_qpel8_mc00_neon(uint8_t *, uint8_t *, int);
10616
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
110 void ff_avg_h264_qpel8_mc10_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
111 void ff_avg_h264_qpel8_mc20_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
112 void ff_avg_h264_qpel8_mc30_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
113 void ff_avg_h264_qpel8_mc01_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
114 void ff_avg_h264_qpel8_mc11_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
115 void ff_avg_h264_qpel8_mc21_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
116 void ff_avg_h264_qpel8_mc31_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
117 void ff_avg_h264_qpel8_mc02_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
118 void ff_avg_h264_qpel8_mc12_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
119 void ff_avg_h264_qpel8_mc22_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
120 void ff_avg_h264_qpel8_mc32_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
121 void ff_avg_h264_qpel8_mc03_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
122 void ff_avg_h264_qpel8_mc13_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
123 void ff_avg_h264_qpel8_mc23_neon(uint8_t *, uint8_t *, int);
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
124 void ff_avg_h264_qpel8_mc33_neon(uint8_t *, uint8_t *, int);
10375
199949177888 ARM: NEON avg_pixels8 and avg_h264_qpel8_mc00
mru
parents: 10362
diff changeset
125
8336
c8401acb05d1 ARM: NEON optimised {put,avg}_h264_chroma_mc[48]
mru
parents: 8334
diff changeset
126 void ff_put_h264_chroma_mc8_neon(uint8_t *, uint8_t *, int, int, int, int);
c8401acb05d1 ARM: NEON optimised {put,avg}_h264_chroma_mc[48]
mru
parents: 8334
diff changeset
127 void ff_put_h264_chroma_mc4_neon(uint8_t *, uint8_t *, int, int, int, int);
10617
5506cbb012b4 ARM: NEON 2xN chroma MC
mru
parents: 10616
diff changeset
128 void ff_put_h264_chroma_mc2_neon(uint8_t *, uint8_t *, int, int, int, int);
8336
c8401acb05d1 ARM: NEON optimised {put,avg}_h264_chroma_mc[48]
mru
parents: 8334
diff changeset
129
c8401acb05d1 ARM: NEON optimised {put,avg}_h264_chroma_mc[48]
mru
parents: 8334
diff changeset
130 void ff_avg_h264_chroma_mc8_neon(uint8_t *, uint8_t *, int, int, int, int);
c8401acb05d1 ARM: NEON optimised {put,avg}_h264_chroma_mc[48]
mru
parents: 8334
diff changeset
131 void ff_avg_h264_chroma_mc4_neon(uint8_t *, uint8_t *, int, int, int, int);
10617
5506cbb012b4 ARM: NEON 2xN chroma MC
mru
parents: 10616
diff changeset
132 void ff_avg_h264_chroma_mc2_neon(uint8_t *, uint8_t *, int, int, int, int);
8336
c8401acb05d1 ARM: NEON optimised {put,avg}_h264_chroma_mc[48]
mru
parents: 8334
diff changeset
133
8337
d43b7f4c5c1c ARM: NEON optimised H.264 loop filter
mru
parents: 8336
diff changeset
134 void ff_h264_v_loop_filter_luma_neon(uint8_t *pix, int stride, int alpha,
d43b7f4c5c1c ARM: NEON optimised H.264 loop filter
mru
parents: 8336
diff changeset
135 int beta, int8_t *tc0);
d43b7f4c5c1c ARM: NEON optimised H.264 loop filter
mru
parents: 8336
diff changeset
136 void ff_h264_h_loop_filter_luma_neon(uint8_t *pix, int stride, int alpha,
d43b7f4c5c1c ARM: NEON optimised H.264 loop filter
mru
parents: 8336
diff changeset
137 int beta, int8_t *tc0);
d43b7f4c5c1c ARM: NEON optimised H.264 loop filter
mru
parents: 8336
diff changeset
138 void ff_h264_v_loop_filter_chroma_neon(uint8_t *pix, int stride, int alpha,
d43b7f4c5c1c ARM: NEON optimised H.264 loop filter
mru
parents: 8336
diff changeset
139 int beta, int8_t *tc0);
d43b7f4c5c1c ARM: NEON optimised H.264 loop filter
mru
parents: 8336
diff changeset
140 void ff_h264_h_loop_filter_chroma_neon(uint8_t *pix, int stride, int alpha,
d43b7f4c5c1c ARM: NEON optimised H.264 loop filter
mru
parents: 8336
diff changeset
141 int beta, int8_t *tc0);
d43b7f4c5c1c ARM: NEON optimised H.264 loop filter
mru
parents: 8336
diff changeset
142
8664
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
143 void ff_weight_h264_pixels_16x16_neon(uint8_t *ds, int stride, int log2_den,
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
144 int weight, int offset);
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
145 void ff_weight_h264_pixels_16x8_neon(uint8_t *ds, int stride, int log2_den,
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
146 int weight, int offset);
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
147 void ff_weight_h264_pixels_8x16_neon(uint8_t *ds, int stride, int log2_den,
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
148 int weight, int offset);
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
149 void ff_weight_h264_pixels_8x8_neon(uint8_t *ds, int stride, int log2_den,
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
150 int weight, int offset);
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
151 void ff_weight_h264_pixels_8x4_neon(uint8_t *ds, int stride, int log2_den,
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
152 int weight, int offset);
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
153 void ff_weight_h264_pixels_4x8_neon(uint8_t *ds, int stride, int log2_den,
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
154 int weight, int offset);
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
155 void ff_weight_h264_pixels_4x4_neon(uint8_t *ds, int stride, int log2_den,
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
156 int weight, int offset);
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
157 void ff_weight_h264_pixels_4x2_neon(uint8_t *ds, int stride, int log2_den,
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
158 int weight, int offset);
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
159
8663
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
160 void ff_biweight_h264_pixels_16x16_neon(uint8_t *dst, uint8_t *src, int stride,
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
161 int log2_den, int weightd, int weights,
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
162 int offset);
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
163 void ff_biweight_h264_pixels_16x8_neon(uint8_t *dst, uint8_t *src, int stride,
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
164 int log2_den, int weightd, int weights,
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
165 int offset);
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
166 void ff_biweight_h264_pixels_8x16_neon(uint8_t *dst, uint8_t *src, int stride,
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
167 int log2_den, int weightd, int weights,
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
168 int offset);
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
169 void ff_biweight_h264_pixels_8x8_neon(uint8_t *dst, uint8_t *src, int stride,
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
170 int log2_den, int weightd, int weights,
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
171 int offset);
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
172 void ff_biweight_h264_pixels_8x4_neon(uint8_t *dst, uint8_t *src, int stride,
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
173 int log2_den, int weightd, int weights,
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
174 int offset);
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
175 void ff_biweight_h264_pixels_4x8_neon(uint8_t *dst, uint8_t *src, int stride,
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
176 int log2_den, int weightd, int weights,
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
177 int offset);
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
178 void ff_biweight_h264_pixels_4x4_neon(uint8_t *dst, uint8_t *src, int stride,
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
179 int log2_den, int weightd, int weights,
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
180 int offset);
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
181 void ff_biweight_h264_pixels_4x2_neon(uint8_t *dst, uint8_t *src, int stride,
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
182 int log2_den, int weightd, int weights,
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
183 int offset);
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
184
8339
a561ec6d1bf6 ARM: NEON optimised h264_idct_add
mru
parents: 8338
diff changeset
185 void ff_h264_idct_add_neon(uint8_t *dst, DCTELEM *block, int stride);
8340
834a77844ba3 ARM: NEON optimised h264_idct_dc_add
mru
parents: 8339
diff changeset
186 void ff_h264_idct_dc_add_neon(uint8_t *dst, DCTELEM *block, int stride);
8462
0ca0e3c98ed5 ARM: add new h264 idct functions
mru
parents: 8359
diff changeset
187 void ff_h264_idct_add16_neon(uint8_t *dst, const int *block_offset,
0ca0e3c98ed5 ARM: add new h264 idct functions
mru
parents: 8359
diff changeset
188 DCTELEM *block, int stride,
0ca0e3c98ed5 ARM: add new h264 idct functions
mru
parents: 8359
diff changeset
189 const uint8_t nnzc[6*8]);
0ca0e3c98ed5 ARM: add new h264 idct functions
mru
parents: 8359
diff changeset
190 void ff_h264_idct_add16intra_neon(uint8_t *dst, const int *block_offset,
0ca0e3c98ed5 ARM: add new h264 idct functions
mru
parents: 8359
diff changeset
191 DCTELEM *block, int stride,
0ca0e3c98ed5 ARM: add new h264 idct functions
mru
parents: 8359
diff changeset
192 const uint8_t nnzc[6*8]);
0ca0e3c98ed5 ARM: add new h264 idct functions
mru
parents: 8359
diff changeset
193 void ff_h264_idct_add8_neon(uint8_t **dest, const int *block_offset,
0ca0e3c98ed5 ARM: add new h264 idct functions
mru
parents: 8359
diff changeset
194 DCTELEM *block, int stride,
0ca0e3c98ed5 ARM: add new h264 idct functions
mru
parents: 8359
diff changeset
195 const uint8_t nnzc[6*8]);
8339
a561ec6d1bf6 ARM: NEON optimised h264_idct_add
mru
parents: 8338
diff changeset
196
9692
9d103a3236e0 ARM: NEON VP3 Loop Filter
conrad
parents: 9580
diff changeset
197 void ff_vp3_v_loop_filter_neon(uint8_t *, int, int *);
9d103a3236e0 ARM: NEON VP3 Loop Filter
conrad
parents: 9580
diff changeset
198 void ff_vp3_h_loop_filter_neon(uint8_t *, int, int *);
9d103a3236e0 ARM: NEON VP3 Loop Filter
conrad
parents: 9580
diff changeset
199
8697
307b176f91e7 ARM: NEON optimised vector_fmul
mru
parents: 8664
diff changeset
200 void ff_vector_fmul_neon(float *dst, const float *src, int len);
8698
24a7b5d0eb27 ARM: NEON optimised vector_fmul_window
mru
parents: 8697
diff changeset
201 void ff_vector_fmul_window_neon(float *dst, const float *src0,
24a7b5d0eb27 ARM: NEON optimised vector_fmul_window
mru
parents: 8697
diff changeset
202 const float *src1, const float *win,
24a7b5d0eb27 ARM: NEON optimised vector_fmul_window
mru
parents: 8697
diff changeset
203 float add_bias, int len);
10221
2791393081ff ARM: NEON optimisations for some dsputil functions
mru
parents: 10046
diff changeset
204 void ff_vector_fmul_scalar_neon(float *dst, const float *src, float mul,
2791393081ff ARM: NEON optimisations for some dsputil functions
mru
parents: 10046
diff changeset
205 int len);
2791393081ff ARM: NEON optimisations for some dsputil functions
mru
parents: 10046
diff changeset
206 void ff_vector_fmul_sv_scalar_2_neon(float *dst, const float *src,
2791393081ff ARM: NEON optimisations for some dsputil functions
mru
parents: 10046
diff changeset
207 const float **vp, float mul, int len);
2791393081ff ARM: NEON optimisations for some dsputil functions
mru
parents: 10046
diff changeset
208 void ff_vector_fmul_sv_scalar_4_neon(float *dst, const float *src,
2791393081ff ARM: NEON optimisations for some dsputil functions
mru
parents: 10046
diff changeset
209 const float **vp, float mul, int len);
2791393081ff ARM: NEON optimisations for some dsputil functions
mru
parents: 10046
diff changeset
210 void ff_sv_fmul_scalar_2_neon(float *dst, const float **vp, float mul,
2791393081ff ARM: NEON optimisations for some dsputil functions
mru
parents: 10046
diff changeset
211 int len);
2791393081ff ARM: NEON optimisations for some dsputil functions
mru
parents: 10046
diff changeset
212 void ff_sv_fmul_scalar_4_neon(float *dst, const float **vp, float mul,
2791393081ff ARM: NEON optimisations for some dsputil functions
mru
parents: 10046
diff changeset
213 int len);
2791393081ff ARM: NEON optimisations for some dsputil functions
mru
parents: 10046
diff changeset
214 void ff_butterflies_float_neon(float *v1, float *v2, int len);
10228
b783894a1c62 ARM: NEON optimised scalarproduct_float
mru
parents: 10221
diff changeset
215 float ff_scalarproduct_float_neon(const float *v1, const float *v2, int len);
10253
64dd9515b93b ARM: NEON optimised int32_to_float_fmul_scalar
mru
parents: 10228
diff changeset
216 void ff_int32_to_float_fmul_scalar_neon(float *dst, const int *src,
64dd9515b93b ARM: NEON optimised int32_to_float_fmul_scalar
mru
parents: 10228
diff changeset
217 float mul, int len);
10274
bcf5c5551b3c ARM: NEON optimised vector_fmul_reverse
mru
parents: 10253
diff changeset
218 void ff_vector_fmul_reverse_neon(float *dst, const float *src0,
bcf5c5551b3c ARM: NEON optimised vector_fmul_reverse
mru
parents: 10253
diff changeset
219 const float *src1, int len);
10302
6db89678b326 ARM: NEON optimised vector_fmul_add
mru
parents: 10276
diff changeset
220 void ff_vector_fmul_add_neon(float *dst, const float *src0, const float *src1,
6db89678b326 ARM: NEON optimised vector_fmul_add
mru
parents: 10276
diff changeset
221 const float *src2, int len);
8697
307b176f91e7 ARM: NEON optimised vector_fmul
mru
parents: 8664
diff changeset
222
10276
06d4e87718b1 ARM: NEON optimised vector_clipf
mru
parents: 10274
diff changeset
223 void ff_vector_clipf_neon(float *dst, const float *src, float min, float max,
06d4e87718b1 ARM: NEON optimised vector_clipf
mru
parents: 10274
diff changeset
224 int len);
8492
639169d7fad5 ARM: NEON optimised float_to_int16
mru
parents: 8462
diff changeset
225 void ff_float_to_int16_neon(int16_t *, const float *, long);
639169d7fad5 ARM: NEON optimised float_to_int16
mru
parents: 8462
diff changeset
226 void ff_float_to_int16_interleave_neon(int16_t *, const float **, long, int);
639169d7fad5 ARM: NEON optimised float_to_int16
mru
parents: 8462
diff changeset
227
10046
1e651d94b35f ARM: NEON optimised vorbis_inverse_coupling
mru
parents: 9977
diff changeset
228 void ff_vorbis_inverse_coupling_neon(float *mag, float *ang, int blocksize);
1e651d94b35f ARM: NEON optimised vorbis_inverse_coupling
mru
parents: 9977
diff changeset
229
11243
e71b0be9ac79 ARM: NEON scalarproduct_int16 and scalarproduct_and_madd_int16
mru
parents: 10617
diff changeset
230 int32_t ff_scalarproduct_int16_neon(int16_t *v1, int16_t *v2, int len,
e71b0be9ac79 ARM: NEON scalarproduct_int16 and scalarproduct_and_madd_int16
mru
parents: 10617
diff changeset
231 int shift);
e71b0be9ac79 ARM: NEON scalarproduct_int16 and scalarproduct_and_madd_int16
mru
parents: 10617
diff changeset
232 int32_t ff_scalarproduct_and_madd_int16_neon(int16_t *v1, int16_t *v2,
e71b0be9ac79 ARM: NEON scalarproduct_int16 and scalarproduct_and_madd_int16
mru
parents: 10617
diff changeset
233 int16_t *v3, int len, int mul);
e71b0be9ac79 ARM: NEON scalarproduct_int16 and scalarproduct_and_madd_int16
mru
parents: 10617
diff changeset
234
8334
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
235 void ff_dsputil_init_neon(DSPContext *c, AVCodecContext *avctx)
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
236 {
10359
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
237 if (!avctx->lowres) {
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
238 if (avctx->idct_algo == FF_IDCT_AUTO ||
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
239 avctx->idct_algo == FF_IDCT_SIMPLENEON) {
10362
838b42ccd65e ARM: cosmetics
mru
parents: 10360
diff changeset
240 c->idct_put = ff_simple_idct_put_neon;
838b42ccd65e ARM: cosmetics
mru
parents: 10360
diff changeset
241 c->idct_add = ff_simple_idct_add_neon;
838b42ccd65e ARM: cosmetics
mru
parents: 10360
diff changeset
242 c->idct = ff_simple_idct_neon;
10359
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
243 c->idct_permutation_type = FF_PARTTRANS_IDCT_PERM;
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
244 } else if ((CONFIG_VP3_DECODER || CONFIG_VP5_DECODER ||
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
245 CONFIG_VP6_DECODER) &&
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
246 avctx->idct_algo == FF_IDCT_VP3) {
10362
838b42ccd65e ARM: cosmetics
mru
parents: 10360
diff changeset
247 c->idct_put = ff_vp3_idct_put_neon;
838b42ccd65e ARM: cosmetics
mru
parents: 10360
diff changeset
248 c->idct_add = ff_vp3_idct_add_neon;
838b42ccd65e ARM: cosmetics
mru
parents: 10360
diff changeset
249 c->idct = ff_vp3_idct_neon;
10359
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
250 c->idct_permutation_type = FF_TRANSPOSE_IDCT_PERM;
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
251 }
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
252 }
48be79afc72d ARM: clean up dsputil initialisation
mru
parents: 10302
diff changeset
253
8334
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
254 c->put_pixels_tab[0][0] = ff_put_pixels16_neon;
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
255 c->put_pixels_tab[0][1] = ff_put_pixels16_x2_neon;
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
256 c->put_pixels_tab[0][2] = ff_put_pixels16_y2_neon;
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
257 c->put_pixels_tab[0][3] = ff_put_pixels16_xy2_neon;
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
258 c->put_pixels_tab[1][0] = ff_put_pixels8_neon;
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
259 c->put_pixels_tab[1][1] = ff_put_pixels8_x2_neon;
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
260 c->put_pixels_tab[1][2] = ff_put_pixels8_y2_neon;
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
261 c->put_pixels_tab[1][3] = ff_put_pixels8_xy2_neon;
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
262
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
263 c->put_no_rnd_pixels_tab[0][0] = ff_put_pixels16_neon;
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
264 c->put_no_rnd_pixels_tab[0][1] = ff_put_pixels16_x2_no_rnd_neon;
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
265 c->put_no_rnd_pixels_tab[0][2] = ff_put_pixels16_y2_no_rnd_neon;
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
266 c->put_no_rnd_pixels_tab[0][3] = ff_put_pixels16_xy2_no_rnd_neon;
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
267 c->put_no_rnd_pixels_tab[1][0] = ff_put_pixels8_neon;
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
268 c->put_no_rnd_pixels_tab[1][1] = ff_put_pixels8_x2_no_rnd_neon;
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
269 c->put_no_rnd_pixels_tab[1][2] = ff_put_pixels8_y2_no_rnd_neon;
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
270 c->put_no_rnd_pixels_tab[1][3] = ff_put_pixels8_xy2_no_rnd_neon;
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
271
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
272 c->avg_pixels_tab[0][0] = ff_avg_pixels16_neon;
10375
199949177888 ARM: NEON avg_pixels8 and avg_h264_qpel8_mc00
mru
parents: 10362
diff changeset
273 c->avg_pixels_tab[1][0] = ff_avg_pixels8_neon;
8334
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
274
9344
9ea1ea6db616 ARM: NEON optimised add_pixels_clamped
mru
parents: 8698
diff changeset
275 c->add_pixels_clamped = ff_add_pixels_clamped_neon;
9580
51e8f5ab8f1e ARM: NEON put_pixels_clamped
conrad
parents: 9345
diff changeset
276 c->put_pixels_clamped = ff_put_pixels_clamped_neon;
9345
e0a7a6338526 ARM: NEON optimized put_signed_pixels_clamped
conrad
parents: 9344
diff changeset
277 c->put_signed_pixels_clamped = ff_put_signed_pixels_clamped_neon;
9344
9ea1ea6db616 ARM: NEON optimised add_pixels_clamped
mru
parents: 8698
diff changeset
278
9976
e52cd349e708 Only compile in NEON optimizations for H.264 when the H.264 decoder is enabled.
diego
parents: 9975
diff changeset
279 if (CONFIG_H264_DECODER) {
9977
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
280 c->put_h264_chroma_pixels_tab[0] = ff_put_h264_chroma_mc8_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
281 c->put_h264_chroma_pixels_tab[1] = ff_put_h264_chroma_mc4_neon;
10617
5506cbb012b4 ARM: NEON 2xN chroma MC
mru
parents: 10616
diff changeset
282 c->put_h264_chroma_pixels_tab[2] = ff_put_h264_chroma_mc2_neon;
8336
c8401acb05d1 ARM: NEON optimised {put,avg}_h264_chroma_mc[48]
mru
parents: 8334
diff changeset
283
9977
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
284 c->avg_h264_chroma_pixels_tab[0] = ff_avg_h264_chroma_mc8_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
285 c->avg_h264_chroma_pixels_tab[1] = ff_avg_h264_chroma_mc4_neon;
10617
5506cbb012b4 ARM: NEON 2xN chroma MC
mru
parents: 10616
diff changeset
286 c->avg_h264_chroma_pixels_tab[2] = ff_avg_h264_chroma_mc2_neon;
8336
c8401acb05d1 ARM: NEON optimised {put,avg}_h264_chroma_mc[48]
mru
parents: 8334
diff changeset
287
9977
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
288 c->put_h264_qpel_pixels_tab[0][ 0] = ff_put_h264_qpel16_mc00_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
289 c->put_h264_qpel_pixels_tab[0][ 1] = ff_put_h264_qpel16_mc10_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
290 c->put_h264_qpel_pixels_tab[0][ 2] = ff_put_h264_qpel16_mc20_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
291 c->put_h264_qpel_pixels_tab[0][ 3] = ff_put_h264_qpel16_mc30_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
292 c->put_h264_qpel_pixels_tab[0][ 4] = ff_put_h264_qpel16_mc01_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
293 c->put_h264_qpel_pixels_tab[0][ 5] = ff_put_h264_qpel16_mc11_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
294 c->put_h264_qpel_pixels_tab[0][ 6] = ff_put_h264_qpel16_mc21_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
295 c->put_h264_qpel_pixels_tab[0][ 7] = ff_put_h264_qpel16_mc31_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
296 c->put_h264_qpel_pixels_tab[0][ 8] = ff_put_h264_qpel16_mc02_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
297 c->put_h264_qpel_pixels_tab[0][ 9] = ff_put_h264_qpel16_mc12_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
298 c->put_h264_qpel_pixels_tab[0][10] = ff_put_h264_qpel16_mc22_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
299 c->put_h264_qpel_pixels_tab[0][11] = ff_put_h264_qpel16_mc32_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
300 c->put_h264_qpel_pixels_tab[0][12] = ff_put_h264_qpel16_mc03_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
301 c->put_h264_qpel_pixels_tab[0][13] = ff_put_h264_qpel16_mc13_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
302 c->put_h264_qpel_pixels_tab[0][14] = ff_put_h264_qpel16_mc23_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
303 c->put_h264_qpel_pixels_tab[0][15] = ff_put_h264_qpel16_mc33_neon;
8338
b294a0d5bc50 ARM: NEON optimised H.264 8x8 and 16x16 qpel MC
mru
parents: 8337
diff changeset
304
9977
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
305 c->put_h264_qpel_pixels_tab[1][ 0] = ff_put_h264_qpel8_mc00_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
306 c->put_h264_qpel_pixels_tab[1][ 1] = ff_put_h264_qpel8_mc10_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
307 c->put_h264_qpel_pixels_tab[1][ 2] = ff_put_h264_qpel8_mc20_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
308 c->put_h264_qpel_pixels_tab[1][ 3] = ff_put_h264_qpel8_mc30_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
309 c->put_h264_qpel_pixels_tab[1][ 4] = ff_put_h264_qpel8_mc01_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
310 c->put_h264_qpel_pixels_tab[1][ 5] = ff_put_h264_qpel8_mc11_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
311 c->put_h264_qpel_pixels_tab[1][ 6] = ff_put_h264_qpel8_mc21_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
312 c->put_h264_qpel_pixels_tab[1][ 7] = ff_put_h264_qpel8_mc31_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
313 c->put_h264_qpel_pixels_tab[1][ 8] = ff_put_h264_qpel8_mc02_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
314 c->put_h264_qpel_pixels_tab[1][ 9] = ff_put_h264_qpel8_mc12_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
315 c->put_h264_qpel_pixels_tab[1][10] = ff_put_h264_qpel8_mc22_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
316 c->put_h264_qpel_pixels_tab[1][11] = ff_put_h264_qpel8_mc32_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
317 c->put_h264_qpel_pixels_tab[1][12] = ff_put_h264_qpel8_mc03_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
318 c->put_h264_qpel_pixels_tab[1][13] = ff_put_h264_qpel8_mc13_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
319 c->put_h264_qpel_pixels_tab[1][14] = ff_put_h264_qpel8_mc23_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
320 c->put_h264_qpel_pixels_tab[1][15] = ff_put_h264_qpel8_mc33_neon;
8334
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
321
9977
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
322 c->avg_h264_qpel_pixels_tab[0][ 0] = ff_avg_h264_qpel16_mc00_neon;
10616
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
323 c->avg_h264_qpel_pixels_tab[0][ 1] = ff_avg_h264_qpel16_mc10_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
324 c->avg_h264_qpel_pixels_tab[0][ 2] = ff_avg_h264_qpel16_mc20_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
325 c->avg_h264_qpel_pixels_tab[0][ 3] = ff_avg_h264_qpel16_mc30_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
326 c->avg_h264_qpel_pixels_tab[0][ 4] = ff_avg_h264_qpel16_mc01_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
327 c->avg_h264_qpel_pixels_tab[0][ 5] = ff_avg_h264_qpel16_mc11_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
328 c->avg_h264_qpel_pixels_tab[0][ 6] = ff_avg_h264_qpel16_mc21_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
329 c->avg_h264_qpel_pixels_tab[0][ 7] = ff_avg_h264_qpel16_mc31_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
330 c->avg_h264_qpel_pixels_tab[0][ 8] = ff_avg_h264_qpel16_mc02_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
331 c->avg_h264_qpel_pixels_tab[0][ 9] = ff_avg_h264_qpel16_mc12_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
332 c->avg_h264_qpel_pixels_tab[0][10] = ff_avg_h264_qpel16_mc22_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
333 c->avg_h264_qpel_pixels_tab[0][11] = ff_avg_h264_qpel16_mc32_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
334 c->avg_h264_qpel_pixels_tab[0][12] = ff_avg_h264_qpel16_mc03_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
335 c->avg_h264_qpel_pixels_tab[0][13] = ff_avg_h264_qpel16_mc13_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
336 c->avg_h264_qpel_pixels_tab[0][14] = ff_avg_h264_qpel16_mc23_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
337 c->avg_h264_qpel_pixels_tab[0][15] = ff_avg_h264_qpel16_mc33_neon;
8337
d43b7f4c5c1c ARM: NEON optimised H.264 loop filter
mru
parents: 8336
diff changeset
338
10375
199949177888 ARM: NEON avg_pixels8 and avg_h264_qpel8_mc00
mru
parents: 10362
diff changeset
339 c->avg_h264_qpel_pixels_tab[1][ 0] = ff_avg_h264_qpel8_mc00_neon;
10616
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
340 c->avg_h264_qpel_pixels_tab[1][ 1] = ff_avg_h264_qpel8_mc10_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
341 c->avg_h264_qpel_pixels_tab[1][ 2] = ff_avg_h264_qpel8_mc20_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
342 c->avg_h264_qpel_pixels_tab[1][ 3] = ff_avg_h264_qpel8_mc30_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
343 c->avg_h264_qpel_pixels_tab[1][ 4] = ff_avg_h264_qpel8_mc01_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
344 c->avg_h264_qpel_pixels_tab[1][ 5] = ff_avg_h264_qpel8_mc11_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
345 c->avg_h264_qpel_pixels_tab[1][ 6] = ff_avg_h264_qpel8_mc21_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
346 c->avg_h264_qpel_pixels_tab[1][ 7] = ff_avg_h264_qpel8_mc31_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
347 c->avg_h264_qpel_pixels_tab[1][ 8] = ff_avg_h264_qpel8_mc02_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
348 c->avg_h264_qpel_pixels_tab[1][ 9] = ff_avg_h264_qpel8_mc12_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
349 c->avg_h264_qpel_pixels_tab[1][10] = ff_avg_h264_qpel8_mc22_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
350 c->avg_h264_qpel_pixels_tab[1][11] = ff_avg_h264_qpel8_mc32_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
351 c->avg_h264_qpel_pixels_tab[1][12] = ff_avg_h264_qpel8_mc03_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
352 c->avg_h264_qpel_pixels_tab[1][13] = ff_avg_h264_qpel8_mc13_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
353 c->avg_h264_qpel_pixels_tab[1][14] = ff_avg_h264_qpel8_mc23_neon;
d3b98479ef62 ARM: NEON 16x16 and 8x8 avg qpel MC
mru
parents: 10375
diff changeset
354 c->avg_h264_qpel_pixels_tab[1][15] = ff_avg_h264_qpel8_mc33_neon;
10375
199949177888 ARM: NEON avg_pixels8 and avg_h264_qpel8_mc00
mru
parents: 10362
diff changeset
355
9977
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
356 c->h264_v_loop_filter_luma = ff_h264_v_loop_filter_luma_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
357 c->h264_h_loop_filter_luma = ff_h264_h_loop_filter_luma_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
358 c->h264_v_loop_filter_chroma = ff_h264_v_loop_filter_chroma_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
359 c->h264_h_loop_filter_chroma = ff_h264_h_loop_filter_chroma_neon;
8339
a561ec6d1bf6 ARM: NEON optimised h264_idct_add
mru
parents: 8338
diff changeset
360
9977
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
361 c->weight_h264_pixels_tab[0] = ff_weight_h264_pixels_16x16_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
362 c->weight_h264_pixels_tab[1] = ff_weight_h264_pixels_16x8_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
363 c->weight_h264_pixels_tab[2] = ff_weight_h264_pixels_8x16_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
364 c->weight_h264_pixels_tab[3] = ff_weight_h264_pixels_8x8_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
365 c->weight_h264_pixels_tab[4] = ff_weight_h264_pixels_8x4_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
366 c->weight_h264_pixels_tab[5] = ff_weight_h264_pixels_4x8_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
367 c->weight_h264_pixels_tab[6] = ff_weight_h264_pixels_4x4_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
368 c->weight_h264_pixels_tab[7] = ff_weight_h264_pixels_4x2_neon;
8664
882c351e69c2 ARM: NEON optimised H.264 weighted prediction
mru
parents: 8663
diff changeset
369
9977
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
370 c->biweight_h264_pixels_tab[0] = ff_biweight_h264_pixels_16x16_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
371 c->biweight_h264_pixels_tab[1] = ff_biweight_h264_pixels_16x8_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
372 c->biweight_h264_pixels_tab[2] = ff_biweight_h264_pixels_8x16_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
373 c->biweight_h264_pixels_tab[3] = ff_biweight_h264_pixels_8x8_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
374 c->biweight_h264_pixels_tab[4] = ff_biweight_h264_pixels_8x4_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
375 c->biweight_h264_pixels_tab[5] = ff_biweight_h264_pixels_4x8_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
376 c->biweight_h264_pixels_tab[6] = ff_biweight_h264_pixels_4x4_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
377 c->biweight_h264_pixels_tab[7] = ff_biweight_h264_pixels_4x2_neon;
8663
23f7711e777e ARM: NEON optimised H.264 biweighted prediction
mru
parents: 8492
diff changeset
378
9977
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
379 c->h264_idct_add = ff_h264_idct_add_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
380 c->h264_idct_dc_add = ff_h264_idct_dc_add_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
381 c->h264_idct_add16 = ff_h264_idct_add16_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
382 c->h264_idct_add16intra = ff_h264_idct_add16intra_neon;
fd3505e85d89 cosmetics: reindent/prettyprint after last commit
diego
parents: 9976
diff changeset
383 c->h264_idct_add8 = ff_h264_idct_add8_neon;
9976
e52cd349e708 Only compile in NEON optimizations for H.264 when the H.264 decoder is enabled.
diego
parents: 9975
diff changeset
384 }
8492
639169d7fad5 ARM: NEON optimised float_to_int16
mru
parents: 8462
diff changeset
385
9975
d6d7e8d4a04d Do not redundantly check for both CONFIG_THEORA_DECODER and CONFIG_VP3_DECODER.
diego
parents: 9692
diff changeset
386 if (CONFIG_VP3_DECODER) {
9692
9d103a3236e0 ARM: NEON VP3 Loop Filter
conrad
parents: 9580
diff changeset
387 c->vp3_v_loop_filter = ff_vp3_v_loop_filter_neon;
9d103a3236e0 ARM: NEON VP3 Loop Filter
conrad
parents: 9580
diff changeset
388 c->vp3_h_loop_filter = ff_vp3_h_loop_filter_neon;
9d103a3236e0 ARM: NEON VP3 Loop Filter
conrad
parents: 9580
diff changeset
389 }
9d103a3236e0 ARM: NEON VP3 Loop Filter
conrad
parents: 9580
diff changeset
390
10362
838b42ccd65e ARM: cosmetics
mru
parents: 10360
diff changeset
391 c->vector_fmul = ff_vector_fmul_neon;
838b42ccd65e ARM: cosmetics
mru
parents: 10360
diff changeset
392 c->vector_fmul_window = ff_vector_fmul_window_neon;
838b42ccd65e ARM: cosmetics
mru
parents: 10360
diff changeset
393 c->vector_fmul_scalar = ff_vector_fmul_scalar_neon;
838b42ccd65e ARM: cosmetics
mru
parents: 10360
diff changeset
394 c->butterflies_float = ff_butterflies_float_neon;
838b42ccd65e ARM: cosmetics
mru
parents: 10360
diff changeset
395 c->scalarproduct_float = ff_scalarproduct_float_neon;
10253
64dd9515b93b ARM: NEON optimised int32_to_float_fmul_scalar
mru
parents: 10228
diff changeset
396 c->int32_to_float_fmul_scalar = ff_int32_to_float_fmul_scalar_neon;
10362
838b42ccd65e ARM: cosmetics
mru
parents: 10360
diff changeset
397 c->vector_fmul_reverse = ff_vector_fmul_reverse_neon;
838b42ccd65e ARM: cosmetics
mru
parents: 10360
diff changeset
398 c->vector_fmul_add = ff_vector_fmul_add_neon;
838b42ccd65e ARM: cosmetics
mru
parents: 10360
diff changeset
399 c->vector_clipf = ff_vector_clipf_neon;
10221
2791393081ff ARM: NEON optimisations for some dsputil functions
mru
parents: 10046
diff changeset
400
2791393081ff ARM: NEON optimisations for some dsputil functions
mru
parents: 10046
diff changeset
401 c->vector_fmul_sv_scalar[0] = ff_vector_fmul_sv_scalar_2_neon;
2791393081ff ARM: NEON optimisations for some dsputil functions
mru
parents: 10046
diff changeset
402 c->vector_fmul_sv_scalar[1] = ff_vector_fmul_sv_scalar_4_neon;
2791393081ff ARM: NEON optimisations for some dsputil functions
mru
parents: 10046
diff changeset
403
2791393081ff ARM: NEON optimisations for some dsputil functions
mru
parents: 10046
diff changeset
404 c->sv_fmul_scalar[0] = ff_sv_fmul_scalar_2_neon;
2791393081ff ARM: NEON optimisations for some dsputil functions
mru
parents: 10046
diff changeset
405 c->sv_fmul_scalar[1] = ff_sv_fmul_scalar_4_neon;
8697
307b176f91e7 ARM: NEON optimised vector_fmul
mru
parents: 8664
diff changeset
406
8492
639169d7fad5 ARM: NEON optimised float_to_int16
mru
parents: 8462
diff changeset
407 if (!(avctx->flags & CODEC_FLAG_BITEXACT)) {
10362
838b42ccd65e ARM: cosmetics
mru
parents: 10360
diff changeset
408 c->float_to_int16 = ff_float_to_int16_neon;
8492
639169d7fad5 ARM: NEON optimised float_to_int16
mru
parents: 8462
diff changeset
409 c->float_to_int16_interleave = ff_float_to_int16_interleave_neon;
639169d7fad5 ARM: NEON optimised float_to_int16
mru
parents: 8462
diff changeset
410 }
10046
1e651d94b35f ARM: NEON optimised vorbis_inverse_coupling
mru
parents: 9977
diff changeset
411
1e651d94b35f ARM: NEON optimised vorbis_inverse_coupling
mru
parents: 9977
diff changeset
412 if (CONFIG_VORBIS_DECODER)
1e651d94b35f ARM: NEON optimised vorbis_inverse_coupling
mru
parents: 9977
diff changeset
413 c->vorbis_inverse_coupling = ff_vorbis_inverse_coupling_neon;
11243
e71b0be9ac79 ARM: NEON scalarproduct_int16 and scalarproduct_and_madd_int16
mru
parents: 10617
diff changeset
414
e71b0be9ac79 ARM: NEON scalarproduct_int16 and scalarproduct_and_madd_int16
mru
parents: 10617
diff changeset
415 c->scalarproduct_int16 = ff_scalarproduct_int16_neon;
e71b0be9ac79 ARM: NEON scalarproduct_int16 and scalarproduct_and_madd_int16
mru
parents: 10617
diff changeset
416 c->scalarproduct_and_madd_int16 = ff_scalarproduct_and_madd_int16_neon;
8334
6bdd6dfc3574 ARM: NEON optimised put_pixels functions
mru
parents:
diff changeset
417 }