FFmpeg
Loading...
Searching...
No Matches
pixblockdsp.c
Go to the documentation of this file.
1/*
2 * This file is part of FFmpeg.
3 *
4 * FFmpeg is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * FFmpeg is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19#include <stdint.h>
20
21#include "config.h"
24#include "pixblockdsp.h"
25
26static void get_pixels_16_c(int16_t *restrict block, const uint8_t *pixels,
27 ptrdiff_t stride)
28{
29 for (int i = 0; i < 8; i++)
30 AV_COPY128(block + i * 8, pixels + i * stride);
31}
32
33static void get_pixels_unaligned_16_c(int16_t *restrict block,
34 const uint8_t *pixels, ptrdiff_t stride)
35{
36 AV_COPY128U(block + 0 * 8, pixels + 0 * stride);
37 AV_COPY128U(block + 1 * 8, pixels + 1 * stride);
38 AV_COPY128U(block + 2 * 8, pixels + 2 * stride);
39 AV_COPY128U(block + 3 * 8, pixels + 3 * stride);
40 AV_COPY128U(block + 4 * 8, pixels + 4 * stride);
41 AV_COPY128U(block + 5 * 8, pixels + 5 * stride);
42 AV_COPY128U(block + 6 * 8, pixels + 6 * stride);
43 AV_COPY128U(block + 7 * 8, pixels + 7 * stride);
44}
45
46static void get_pixels_8_c(int16_t *restrict block, const uint8_t *pixels,
47 ptrdiff_t stride)
48{
49 int i;
50
51 /* read the pixels */
52 for (i = 0; i < 8; i++) {
53 block[0] = pixels[0];
54 block[1] = pixels[1];
55 block[2] = pixels[2];
56 block[3] = pixels[3];
57 block[4] = pixels[4];
58 block[5] = pixels[5];
59 block[6] = pixels[6];
60 block[7] = pixels[7];
61 pixels += stride;
62 block += 8;
63 }
64}
65
66static void diff_pixels_c(int16_t *restrict block, const uint8_t *s1,
67 const uint8_t *s2, ptrdiff_t stride)
68{
69 int i;
70
71 /* read the pixels */
72 for (i = 0; i < 8; i++) {
73 block[0] = s1[0] - s2[0];
74 block[1] = s1[1] - s2[1];
75 block[2] = s1[2] - s2[2];
76 block[3] = s1[3] - s2[3];
77 block[4] = s1[4] - s2[4];
78 block[5] = s1[5] - s2[5];
79 block[6] = s1[6] - s2[6];
80 block[7] = s1[7] - s2[7];
81 s1 += stride;
82 s2 += stride;
83 block += 8;
84 }
85}
86
87av_cold void ff_pixblockdsp_init(PixblockDSPContext *c, int bits_per_raw_sample)
88{
89 const unsigned high_bit_depth = bits_per_raw_sample > 8 &&
90 bits_per_raw_sample <= 16;
91
92 c->diff_pixels_unaligned =
93 c->diff_pixels = diff_pixels_c;
94
95 if (high_bit_depth) {
96 c->get_pixels_unaligned = get_pixels_unaligned_16_c;
97 c->get_pixels = get_pixels_16_c;
98 } else {
99 c->get_pixels_unaligned =
100 c->get_pixels = get_pixels_8_c;
101 }
102
103#if ARCH_AARCH64
104 ff_pixblockdsp_init_aarch64(c, high_bit_depth);
105#elif ARCH_ARM
106 ff_pixblockdsp_init_arm(c, high_bit_depth);
107#elif ARCH_PPC
108 ff_pixblockdsp_init_ppc(c, high_bit_depth);
109#elif ARCH_RISCV
110 ff_pixblockdsp_init_riscv(c, high_bit_depth);
111#elif ARCH_X86 && HAVE_X86ASM
112 ff_pixblockdsp_init_x86(c, high_bit_depth);
113#elif ARCH_MIPS
114 ff_pixblockdsp_init_mips(c, high_bit_depth);
115#endif
116}
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
static int16_t block[64]
Definition dct.c:125
#define AV_COPY128(d, s)
#define AV_COPY128U(d, s)
av_cold void ff_pixblockdsp_init(PixblockDSPContext *c, int bits_per_raw_sample)
Definition pixblockdsp.c:87
static void get_pixels_unaligned_16_c(int16_t *restrict block, const uint8_t *pixels, ptrdiff_t stride)
Definition pixblockdsp.c:33
static void diff_pixels_c(int16_t *restrict block, const uint8_t *s1, const uint8_t *s2, ptrdiff_t stride)
Definition pixblockdsp.c:66
static void get_pixels_8_c(int16_t *restrict block, const uint8_t *pixels, ptrdiff_t stride)
Definition pixblockdsp.c:46
static void get_pixels_16_c(int16_t *restrict block, const uint8_t *pixels, ptrdiff_t stride)
Definition pixblockdsp.c:26
Macro definitions for various function/variable attributes.
#define av_cold
Definition attributes.h:117
void ff_pixblockdsp_init_ppc(PixblockDSPContext *c, unsigned high_bit_depth)
void ff_pixblockdsp_init_x86(PixblockDSPContext *c, unsigned high_bit_depth)
void ff_pixblockdsp_init_riscv(PixblockDSPContext *c, unsigned high_bit_depth)
av_cold void ff_pixblockdsp_init_aarch64(PixblockDSPContext *c, unsigned high_bit_depth)
av_cold void ff_pixblockdsp_init_arm(PixblockDSPContext *c, unsigned high_bit_depth)
void ff_pixblockdsp_init_mips(PixblockDSPContext *c, unsigned high_bit_depth)
#define stride
static double c[64]