FFmpeg
pixblockdsp.h
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 #ifndef AVCODEC_PIXBLOCKDSP_H
20 #define AVCODEC_PIXBLOCKDSP_H
21 
22 #include <stdint.h>
23 
24 #include "avcodec.h"
25 
26 typedef struct PixblockDSPContext {
27  void (*get_pixels)(int16_t *restrict block /* align 16 */,
28  const uint8_t *pixels /* align 8 */,
29  ptrdiff_t stride);
30  void (*get_pixels_unaligned)(int16_t *restrict block /* align 16 */,
31  const uint8_t *pixels,
32  ptrdiff_t stride);
33  void (*diff_pixels)(int16_t *restrict block /* align 16 */,
34  const uint8_t *s1 /* align 8 */,
35  const uint8_t *s2 /* align 8 */,
36  ptrdiff_t stride);
37  void (*diff_pixels_unaligned)(int16_t *restrict block /* align 16 */,
38  const uint8_t *s1,
39  const uint8_t *s2,
40  ptrdiff_t stride);
41 
43 
46  unsigned high_bit_depth);
48  unsigned high_bit_depth);
50  unsigned high_bit_depth);
52  unsigned high_bit_depth);
54  unsigned high_bit_depth);
56  unsigned high_bit_depth);
58  unsigned high_bit_depth);
59 
60 #endif /* AVCODEC_PIXBLOCKDSP_H */
PixblockDSPContext::get_pixels_unaligned
void(* get_pixels_unaligned)(int16_t *restrict block, const uint8_t *pixels, ptrdiff_t stride)
Definition: pixblockdsp.h:30
ff_pixblockdsp_init_x86
void ff_pixblockdsp_init_x86(PixblockDSPContext *c, AVCodecContext *avctx, unsigned high_bit_depth)
Definition: pixblockdsp_init.c:30
ff_pixblockdsp_init_alpha
void ff_pixblockdsp_init_alpha(PixblockDSPContext *c, AVCodecContext *avctx, unsigned high_bit_depth)
Definition: pixblockdsp_alpha.c:71
ff_pixblockdsp_init_ppc
void ff_pixblockdsp_init_ppc(PixblockDSPContext *c, AVCodecContext *avctx, unsigned high_bit_depth)
Definition: pixblockdsp.c:265
ff_pixblockdsp_init_aarch64
void ff_pixblockdsp_init_aarch64(PixblockDSPContext *c, AVCodecContext *avctx, unsigned high_bit_depth)
Definition: pixblockdsp_init_aarch64.c:32
PixblockDSPContext::diff_pixels_unaligned
void(* diff_pixels_unaligned)(int16_t *restrict block, const uint8_t *s1, const uint8_t *s2, ptrdiff_t stride)
Definition: pixblockdsp.h:37
s1
#define s1
Definition: regdef.h:38
PixblockDSPContext::get_pixels
void(* get_pixels)(int16_t *restrict block, const uint8_t *pixels, ptrdiff_t stride)
Definition: pixblockdsp.h:27
PixblockDSPContext
Definition: pixblockdsp.h:26
c
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
Definition: undefined.txt:32
s2
#define s2
Definition: regdef.h:39
ff_pixblockdsp_init
void ff_pixblockdsp_init(PixblockDSPContext *c, AVCodecContext *avctx)
Definition: pixblockdsp.c:81
ff_pixblockdsp_init_riscv
void ff_pixblockdsp_init_riscv(PixblockDSPContext *c, AVCodecContext *avctx, unsigned high_bit_depth)
Definition: pixblockdsp_init.c:44
ff_pixblockdsp_init_arm
void ff_pixblockdsp_init_arm(PixblockDSPContext *c, AVCodecContext *avctx, unsigned high_bit_depth)
Definition: pixblockdsp_init_arm.c:41
PixblockDSPContext::diff_pixels
void(* diff_pixels)(int16_t *restrict block, const uint8_t *s1, const uint8_t *s2, ptrdiff_t stride)
Definition: pixblockdsp.h:33
avcodec.h
stride
#define stride
Definition: h264pred_template.c:537
AVCodecContext
main external API structure.
Definition: avcodec.h:445
ff_pixblockdsp_init_mips
void ff_pixblockdsp_init_mips(PixblockDSPContext *c, AVCodecContext *avctx, unsigned high_bit_depth)
Definition: pixblockdsp_init_mips.c:25
block
The exact code depends on how similar the blocks are and how related they are to the block
Definition: filter_design.txt:207