FFmpeg
Loading...
Searching...
No Matches
blockdsp.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#include <string.h>
21
22#include "config.h"
24#include "blockdsp.h"
25
26static void clear_block_c(int16_t *block)
27{
28 memset(block, 0, sizeof(int16_t) * 64);
29}
30
31static void clear_blocks_c(int16_t *blocks)
32{
33 memset(blocks, 0, sizeof(int16_t) * 6 * 64);
34}
35
36static void fill_block16_c(uint8_t *block, uint8_t value, ptrdiff_t line_size,
37 int h)
38{
39 int i;
40
41 for (i = 0; i < h; i++) {
42 memset(block, value, 16);
43 block += line_size;
44 }
45}
46
47static void fill_block8_c(uint8_t *block, uint8_t value, ptrdiff_t line_size,
48 int h)
49{
50 int i;
51
52 for (i = 0; i < h; i++) {
53 memset(block, value, 8);
54 block += line_size;
55 }
56}
57
59{
60 c->clear_block = clear_block_c;
61 c->clear_blocks = clear_blocks_c;
62
63 c->fill_block_tab[0] = fill_block16_c;
64 c->fill_block_tab[1] = fill_block8_c;
65
66#if ARCH_ARM
68#elif ARCH_PPC
70#elif ARCH_RISCV
72#elif ARCH_X86 && HAVE_X86ASM
74#elif ARCH_MIPS
76#endif
77}
void ff_blockdsp_init_ppc(BlockDSPContext *c)
Definition blockdsp.c:145
void ff_blockdsp_init_x86(BlockDSPContext *c)
void ff_blockdsp_init_mips(BlockDSPContext *c)
void ff_blockdsp_init_riscv(BlockDSPContext *c)
av_cold void ff_blockdsp_init_arm(BlockDSPContext *c)
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
static int16_t block[64]
Definition dct.c:125
double value
Definition eval.c:102
av_cold void ff_blockdsp_init(BlockDSPContext *c)
Definition blockdsp.c:58
static void clear_blocks_c(int16_t *blocks)
Definition blockdsp.c:31
static void fill_block8_c(uint8_t *block, uint8_t value, ptrdiff_t line_size, int h)
Definition blockdsp.c:47
static void clear_block_c(int16_t *block)
Definition blockdsp.c:26
static void fill_block16_c(uint8_t *block, uint8_t value, ptrdiff_t line_size, int h)
Definition blockdsp.c:36
Macro definitions for various function/variable attributes.
#define av_cold
Definition attributes.h:117
static double c[64]