]> git.sesse.net Git - ffmpeg/blob - libavcodec/arm/dsputil_init_neon.c
dict: add av_dict_parse_string()
[ffmpeg] / libavcodec / arm / dsputil_init_neon.c
1 /*
2  * ARM NEON optimised DSP functions
3  * Copyright (c) 2008 Mans Rullgard <mans@mansr.com>
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include <stdint.h>
23
24 #include "libavcodec/avcodec.h"
25 #include "libavcodec/dsputil.h"
26 #include "dsputil_arm.h"
27
28 void ff_simple_idct_neon(int16_t *data);
29 void ff_simple_idct_put_neon(uint8_t *dest, int line_size, int16_t *data);
30 void ff_simple_idct_add_neon(uint8_t *dest, int line_size, int16_t *data);
31
32 void ff_clear_block_neon(int16_t *block);
33 void ff_clear_blocks_neon(int16_t *blocks);
34
35 void ff_put_pixels16_neon(uint8_t *, const uint8_t *, int, int);
36 void ff_put_pixels16_x2_neon(uint8_t *, const uint8_t *, int, int);
37 void ff_put_pixels16_y2_neon(uint8_t *, const uint8_t *, int, int);
38 void ff_put_pixels16_xy2_neon(uint8_t *, const uint8_t *, int, int);
39 void ff_put_pixels8_neon(uint8_t *, const uint8_t *, int, int);
40 void ff_put_pixels8_x2_neon(uint8_t *, const uint8_t *, int, int);
41 void ff_put_pixels8_y2_neon(uint8_t *, const uint8_t *, int, int);
42 void ff_put_pixels8_xy2_neon(uint8_t *, const uint8_t *, int, int);
43 void ff_put_pixels16_x2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
44 void ff_put_pixels16_y2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
45 void ff_put_pixels16_xy2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
46 void ff_put_pixels8_x2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
47 void ff_put_pixels8_y2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
48 void ff_put_pixels8_xy2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
49
50 void ff_avg_pixels16_neon(uint8_t *, const uint8_t *, int, int);
51 void ff_avg_pixels16_x2_neon(uint8_t *, const uint8_t *, int, int);
52 void ff_avg_pixels16_y2_neon(uint8_t *, const uint8_t *, int, int);
53 void ff_avg_pixels16_xy2_neon(uint8_t *, const uint8_t *, int, int);
54 void ff_avg_pixels8_neon(uint8_t *, const uint8_t *, int, int);
55 void ff_avg_pixels8_x2_neon(uint8_t *, const uint8_t *, int, int);
56 void ff_avg_pixels8_y2_neon(uint8_t *, const uint8_t *, int, int);
57 void ff_avg_pixels8_xy2_neon(uint8_t *, const uint8_t *, int, int);
58 void ff_avg_pixels16_x2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
59 void ff_avg_pixels16_y2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
60 void ff_avg_pixels16_xy2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
61
62 void ff_add_pixels_clamped_neon(const int16_t *, uint8_t *, int);
63 void ff_put_pixels_clamped_neon(const int16_t *, uint8_t *, int);
64 void ff_put_signed_pixels_clamped_neon(const int16_t *, uint8_t *, int);
65
66 void ff_put_h264_chroma_mc8_neon(uint8_t *, uint8_t *, int, int, int, int);
67 void ff_put_h264_chroma_mc4_neon(uint8_t *, uint8_t *, int, int, int, int);
68 void ff_put_h264_chroma_mc2_neon(uint8_t *, uint8_t *, int, int, int, int);
69
70 void ff_avg_h264_chroma_mc8_neon(uint8_t *, uint8_t *, int, int, int, int);
71 void ff_avg_h264_chroma_mc4_neon(uint8_t *, uint8_t *, int, int, int, int);
72 void ff_avg_h264_chroma_mc2_neon(uint8_t *, uint8_t *, int, int, int, int);
73
74 void ff_vector_clipf_neon(float *dst, const float *src, float min, float max,
75                           int len);
76 void ff_vector_clip_int32_neon(int32_t *dst, const int32_t *src, int32_t min,
77                                int32_t max, unsigned int len);
78
79 int32_t ff_scalarproduct_int16_neon(const int16_t *v1, const int16_t *v2, int len);
80 int32_t ff_scalarproduct_and_madd_int16_neon(int16_t *v1, const int16_t *v2,
81                                              const int16_t *v3, int len, int mul);
82
83 void ff_apply_window_int16_neon(int16_t *dst, const int16_t *src,
84                                 const int16_t *window, unsigned n);
85
86 void ff_dsputil_init_neon(DSPContext *c, AVCodecContext *avctx)
87 {
88     const int high_bit_depth = avctx->bits_per_raw_sample > 8;
89
90     if (avctx->bits_per_raw_sample <= 8) {
91         if (avctx->idct_algo == FF_IDCT_AUTO ||
92             avctx->idct_algo == FF_IDCT_SIMPLENEON) {
93             c->idct_put              = ff_simple_idct_put_neon;
94             c->idct_add              = ff_simple_idct_add_neon;
95             c->idct                  = ff_simple_idct_neon;
96             c->idct_permutation_type = FF_PARTTRANS_IDCT_PERM;
97         }
98     }
99
100     if (!high_bit_depth) {
101         c->clear_block  = ff_clear_block_neon;
102         c->clear_blocks = ff_clear_blocks_neon;
103
104         c->put_pixels_tab[0][0] = ff_put_pixels16_neon;
105         c->put_pixels_tab[0][1] = ff_put_pixels16_x2_neon;
106         c->put_pixels_tab[0][2] = ff_put_pixels16_y2_neon;
107         c->put_pixels_tab[0][3] = ff_put_pixels16_xy2_neon;
108         c->put_pixels_tab[1][0] = ff_put_pixels8_neon;
109         c->put_pixels_tab[1][1] = ff_put_pixels8_x2_neon;
110         c->put_pixels_tab[1][2] = ff_put_pixels8_y2_neon;
111         c->put_pixels_tab[1][3] = ff_put_pixels8_xy2_neon;
112
113         c->put_no_rnd_pixels_tab[0][0] = ff_put_pixels16_neon;
114         c->put_no_rnd_pixels_tab[0][1] = ff_put_pixels16_x2_no_rnd_neon;
115         c->put_no_rnd_pixels_tab[0][2] = ff_put_pixels16_y2_no_rnd_neon;
116         c->put_no_rnd_pixels_tab[0][3] = ff_put_pixels16_xy2_no_rnd_neon;
117         c->put_no_rnd_pixels_tab[1][0] = ff_put_pixels8_neon;
118         c->put_no_rnd_pixels_tab[1][1] = ff_put_pixels8_x2_no_rnd_neon;
119         c->put_no_rnd_pixels_tab[1][2] = ff_put_pixels8_y2_no_rnd_neon;
120         c->put_no_rnd_pixels_tab[1][3] = ff_put_pixels8_xy2_no_rnd_neon;
121
122         c->avg_pixels_tab[0][0] = ff_avg_pixels16_neon;
123         c->avg_pixels_tab[0][1] = ff_avg_pixels16_x2_neon;
124         c->avg_pixels_tab[0][2] = ff_avg_pixels16_y2_neon;
125         c->avg_pixels_tab[0][3] = ff_avg_pixels16_xy2_neon;
126         c->avg_pixels_tab[1][0] = ff_avg_pixels8_neon;
127         c->avg_pixels_tab[1][1] = ff_avg_pixels8_x2_neon;
128         c->avg_pixels_tab[1][2] = ff_avg_pixels8_y2_neon;
129         c->avg_pixels_tab[1][3] = ff_avg_pixels8_xy2_neon;
130
131         c->avg_no_rnd_pixels_tab[0] = ff_avg_pixels16_neon;
132         c->avg_no_rnd_pixels_tab[1] = ff_avg_pixels16_x2_no_rnd_neon;
133         c->avg_no_rnd_pixels_tab[2] = ff_avg_pixels16_y2_no_rnd_neon;
134         c->avg_no_rnd_pixels_tab[3] = ff_avg_pixels16_xy2_no_rnd_neon;
135     }
136
137     c->add_pixels_clamped = ff_add_pixels_clamped_neon;
138     c->put_pixels_clamped = ff_put_pixels_clamped_neon;
139     c->put_signed_pixels_clamped = ff_put_signed_pixels_clamped_neon;
140
141     if (CONFIG_H264_DECODER && !high_bit_depth) {
142         c->put_h264_chroma_pixels_tab[0] = ff_put_h264_chroma_mc8_neon;
143         c->put_h264_chroma_pixels_tab[1] = ff_put_h264_chroma_mc4_neon;
144         c->put_h264_chroma_pixels_tab[2] = ff_put_h264_chroma_mc2_neon;
145
146         c->avg_h264_chroma_pixels_tab[0] = ff_avg_h264_chroma_mc8_neon;
147         c->avg_h264_chroma_pixels_tab[1] = ff_avg_h264_chroma_mc4_neon;
148         c->avg_h264_chroma_pixels_tab[2] = ff_avg_h264_chroma_mc2_neon;
149     }
150
151     c->vector_clipf               = ff_vector_clipf_neon;
152     c->vector_clip_int32          = ff_vector_clip_int32_neon;
153
154     c->scalarproduct_int16 = ff_scalarproduct_int16_neon;
155     c->scalarproduct_and_madd_int16 = ff_scalarproduct_and_madd_int16_neon;
156
157     c->apply_window_int16 = ff_apply_window_int16_neon;
158 }