comparison armv4l/dsputil_neon.c @ 8334:6bdd6dfc3574 libavcodec

ARM: NEON optimised put_pixels functions
author mru
date Mon, 15 Dec 2008 22:12:32 +0000
parents
children c8401acb05d1
comparison
equal deleted inserted replaced
8333:09aafff47bc0 8334:6bdd6dfc3574
1 /*
2 * ARM NEON optimised DSP functions
3 * Copyright (c) 2008 Mans Rullgard <mans@mansr.com>
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg 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 * FFmpeg 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 FFmpeg; 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
27 void ff_put_pixels16_neon(uint8_t *, const uint8_t *, int, int);
28 void ff_put_pixels16_x2_neon(uint8_t *, const uint8_t *, int, int);
29 void ff_put_pixels16_y2_neon(uint8_t *, const uint8_t *, int, int);
30 void ff_put_pixels16_xy2_neon(uint8_t *, const uint8_t *, int, int);
31 void ff_put_pixels8_neon(uint8_t *, const uint8_t *, int, int);
32 void ff_put_pixels8_x2_neon(uint8_t *, const uint8_t *, int, int);
33 void ff_put_pixels8_y2_neon(uint8_t *, const uint8_t *, int, int);
34 void ff_put_pixels8_xy2_neon(uint8_t *, const uint8_t *, int, int);
35 void ff_put_pixels16_x2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
36 void ff_put_pixels16_y2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
37 void ff_put_pixels16_xy2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
38 void ff_put_pixels8_x2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
39 void ff_put_pixels8_y2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
40 void ff_put_pixels8_xy2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
41
42 void ff_avg_pixels16_neon(uint8_t *, const uint8_t *, int, int);
43
44 void ff_put_h264_qpel16_mc00_neon(uint8_t *, uint8_t *, int);
45 void ff_put_h264_qpel8_mc00_neon(uint8_t *, uint8_t *, int);
46
47 void ff_avg_h264_qpel16_mc00_neon(uint8_t *, uint8_t *, int);
48
49 void ff_dsputil_init_neon(DSPContext *c, AVCodecContext *avctx)
50 {
51 c->put_pixels_tab[0][0] = ff_put_pixels16_neon;
52 c->put_pixels_tab[0][1] = ff_put_pixels16_x2_neon;
53 c->put_pixels_tab[0][2] = ff_put_pixels16_y2_neon;
54 c->put_pixels_tab[0][3] = ff_put_pixels16_xy2_neon;
55 c->put_pixels_tab[1][0] = ff_put_pixels8_neon;
56 c->put_pixels_tab[1][1] = ff_put_pixels8_x2_neon;
57 c->put_pixels_tab[1][2] = ff_put_pixels8_y2_neon;
58 c->put_pixels_tab[1][3] = ff_put_pixels8_xy2_neon;
59
60 c->put_no_rnd_pixels_tab[0][0] = ff_put_pixels16_neon;
61 c->put_no_rnd_pixels_tab[0][1] = ff_put_pixels16_x2_no_rnd_neon;
62 c->put_no_rnd_pixels_tab[0][2] = ff_put_pixels16_y2_no_rnd_neon;
63 c->put_no_rnd_pixels_tab[0][3] = ff_put_pixels16_xy2_no_rnd_neon;
64 c->put_no_rnd_pixels_tab[1][0] = ff_put_pixels8_neon;
65 c->put_no_rnd_pixels_tab[1][1] = ff_put_pixels8_x2_no_rnd_neon;
66 c->put_no_rnd_pixels_tab[1][2] = ff_put_pixels8_y2_no_rnd_neon;
67 c->put_no_rnd_pixels_tab[1][3] = ff_put_pixels8_xy2_no_rnd_neon;
68
69 c->avg_pixels_tab[0][0] = ff_avg_pixels16_neon;
70
71 c->put_h264_qpel_pixels_tab[0][0] = ff_put_h264_qpel16_mc00_neon;
72 c->put_h264_qpel_pixels_tab[1][0] = ff_put_h264_qpel8_mc00_neon;
73
74 c->avg_h264_qpel_pixels_tab[0][ 0] = ff_avg_h264_qpel16_mc00_neon;
75 }