]> git.sesse.net Git - ffmpeg/blob - libavcodec/ppc/svq1enc_altivec.c
Merge commit '383136264ef40452efd86cafb2d7221cd3830b3d'
[ffmpeg] / libavcodec / ppc / svq1enc_altivec.c
1 /*
2  * Copyright (c) 2007 Luca Barbato <lu_zero@gentoo.org>
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include <stdint.h>
22
23 #include "config.h"
24 #if HAVE_ALTIVEC_H
25 #include <altivec.h>
26 #endif
27
28 #include "libavutil/attributes.h"
29 #include "libavutil/ppc/types_altivec.h"
30 #include "libavutil/ppc/util_altivec.h"
31 #include "libavcodec/svq1enc.h"
32
33 #if HAVE_ALTIVEC
34 static int ssd_int8_vs_int16_altivec(const int8_t *pix1, const int16_t *pix2,
35                                      int size)
36 {
37     int i, size16 = size >> 4;
38     vector signed char vpix1;
39     vector signed short vpix2, vdiff, vpix1l, vpix1h;
40     union {
41         vector signed int vscore;
42         int32_t score[4];
43     } u = { .vscore = vec_splat_s32(0) };
44
45     while (size16) {
46         // score += (pix1[i] - pix2[i]) * (pix1[i] - pix2[i]);
47         // load pix1 and the first batch of pix2
48
49         vpix1 = vec_unaligned_load(pix1);
50         vpix2 = vec_unaligned_load(pix2);
51         pix2 += 8;
52         // unpack
53         vpix1h = vec_unpackh(vpix1);
54         vdiff  = vec_sub(vpix1h, vpix2);
55         vpix1l = vec_unpackl(vpix1);
56         // load another batch from pix2
57         vpix2    = vec_unaligned_load(pix2);
58         u.vscore = vec_msum(vdiff, vdiff, u.vscore);
59         vdiff    = vec_sub(vpix1l, vpix2);
60         u.vscore = vec_msum(vdiff, vdiff, u.vscore);
61         pix1    += 16;
62         pix2    += 8;
63         size16--;
64     }
65     u.vscore = vec_sums(u.vscore, vec_splat_s32(0));
66
67     size %= 16;
68     for (i = 0; i < size; i++)
69         u.score[3] += (pix1[i] - pix2[i]) * (pix1[i] - pix2[i]);
70
71     return u.score[3];
72 }
73 #endif /* HAVE_ALTIVEC */
74
75 av_cold void ff_svq1enc_init_ppc(SVQ1EncContext *c)
76 {
77 #if HAVE_ALTIVEC
78     c->ssd_int8_vs_int16 = ssd_int8_vs_int16_altivec;
79 #endif /* HAVE_ALTIVEC */
80 }