FFmpeg
Loading...
Searching...
No Matches
vp3dsp.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_VP3DSP_H
20#define AVCODEC_VP3DSP_H
21
22#include <stddef.h>
23#include <stdint.h>
24
25// If this is one, {v,h}_loop_filter expect src to be aligned on eight bytes;
26// otherwise they don't have any alignment requirements for src.
27#define VP3_LOOP_FILTER_NO_UNALIGNED_SUPPORT (ARCH_ARM || ARCH_MIPS)
28
29typedef struct VP3DSPContext {
30 /**
31 * Copy 8xH pixels from source to destination buffer using a bilinear
32 * filter with no rounding (i.e. *dst = (*a + *b) >> 1).
33 *
34 * @param dst destination buffer, aligned by 8
35 * @param a first source buffer, no alignment
36 * @param b second source buffer, no alignment
37 * @param stride distance between two lines in source/dest buffers
38 * @param h height
39 */
40 void (*put_no_rnd_pixels_l2)(uint8_t *dst,
41 const uint8_t *a,
42 const uint8_t *b,
43 ptrdiff_t stride, int h);
44
45 void (*idct_put)(uint8_t *dest, ptrdiff_t stride, int16_t *block);
46 void (*idct_add)(uint8_t *dest, ptrdiff_t stride, int16_t *block);
47 void (*idct_dc_add)(uint8_t *dest, ptrdiff_t stride, int16_t *block);
48 void (*v_loop_filter)(uint8_t *src, ptrdiff_t stride, int *bounding_values);
49 void (*h_loop_filter)(uint8_t *src, ptrdiff_t stride, int *bounding_values);
50 void (*v_loop_filter_unaligned)(uint8_t *src, ptrdiff_t stride, int *bounding_values);
51 void (*h_loop_filter_unaligned)(uint8_t *src, ptrdiff_t stride, int *bounding_values);
53
54void ff_vp3dsp_v_loop_filter_12(uint8_t *first_pixel, ptrdiff_t stride, int *bounding_values);
55void ff_vp3dsp_h_loop_filter_12(uint8_t *first_pixel, ptrdiff_t stride, int *bounding_values);
56
57void ff_vp3dsp_idct10_put(uint8_t *dest, ptrdiff_t stride, int16_t *block);
58void ff_vp3dsp_idct10_add(uint8_t *dest, ptrdiff_t stride, int16_t *block);
59
65
66void ff_vp3dsp_set_bounding_values(int * bound_values_array, int filter_limit);
67
68#endif /* AVCODEC_VP3DSP_H */
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
static int16_t block[64]
Definition dct.c:125
int a
#define b
Definition input.c:43
void(* idct_dc_add)(uint8_t *dest, ptrdiff_t stride, int16_t *block)
Definition vp3dsp.h:47
void(* idct_put)(uint8_t *dest, ptrdiff_t stride, int16_t *block)
Definition vp3dsp.h:45
void(* v_loop_filter)(uint8_t *src, ptrdiff_t stride, int *bounding_values)
Definition vp3dsp.h:48
void(* v_loop_filter_unaligned)(uint8_t *src, ptrdiff_t stride, int *bounding_values)
Definition vp3dsp.h:50
void(* put_no_rnd_pixels_l2)(uint8_t *dst, const uint8_t *a, const uint8_t *b, ptrdiff_t stride, int h)
Copy 8xH pixels from source to destination buffer using a bilinear filter with no rounding (i....
Definition vp3dsp.h:40
void(* h_loop_filter)(uint8_t *src, ptrdiff_t stride, int *bounding_values)
Definition vp3dsp.h:49
void(* idct_add)(uint8_t *dest, ptrdiff_t stride, int16_t *block)
Definition vp3dsp.h:46
void(* h_loop_filter_unaligned)(uint8_t *src, ptrdiff_t stride, int *bounding_values)
Definition vp3dsp.h:51
#define stride
#define src
Definition vp8dsp.c:248
void ff_vp3dsp_set_bounding_values(int *bound_values_array, int filter_limit)
Definition vp3dsp.c:477
void ff_vp3dsp_init_x86(VP3DSPContext *c)
Definition vp3dsp_init.c:43
void ff_vp3dsp_init_arm(VP3DSPContext *c)
void ff_vp3dsp_h_loop_filter_12(uint8_t *first_pixel, ptrdiff_t stride, int *bounding_values)
void ff_vp3dsp_init(VP3DSPContext *c)
Definition vp3dsp.c:448
void ff_vp3dsp_v_loop_filter_12(uint8_t *first_pixel, ptrdiff_t stride, int *bounding_values)
void ff_vp3dsp_init_ppc(VP3DSPContext *c)
void ff_vp3dsp_idct10_put(uint8_t *dest, ptrdiff_t stride, int16_t *block)
Definition vp3dsp.c:341
void ff_vp3dsp_init_mips(VP3DSPContext *c)
void ff_vp3dsp_idct10_add(uint8_t *dest, ptrdiff_t stride, int16_t *block)
Definition vp3dsp.c:347
static double c[64]