FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
colorspacedsp.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016 Ronald S. Bultje <rsbultje@gmail.com>
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 #ifndef AVFILTER_COLORSPACEDSP_H
22 #define AVFILTER_COLORSPACEDSP_H
23 
24 #include <stddef.h>
25 #include <stdint.h>
26 
27 typedef void (*yuv2rgb_fn)(int16_t *rgb[3], ptrdiff_t rgb_stride,
28  uint8_t *yuv[3], const ptrdiff_t yuv_stride[3],
29  int w, int h, const int16_t yuv2rgb_coeffs[3][3][8],
30  const int16_t yuv_offset[8]);
31 typedef void (*rgb2yuv_fn)(uint8_t *yuv[3], const ptrdiff_t yuv_stride[3],
32  int16_t *rgb[3], ptrdiff_t rgb_stride,
33  int w, int h, const int16_t rgb2yuv_coeffs[3][3][8],
34  const int16_t yuv_offset[8]);
35 typedef void (*rgb2yuv_fsb_fn)(uint8_t *yuv[3], const ptrdiff_t yuv_stride[3],
36  int16_t *rgb[3], ptrdiff_t rgb_stride,
37  int w, int h, const int16_t rgb2yuv_coeffs[3][3][8],
38  const int16_t yuv_offset[8],
39  int *rnd[3][2]);
40 typedef void (*yuv2yuv_fn)(uint8_t *yuv_out[3], const ptrdiff_t yuv_out_stride[3],
41  uint8_t *yuv_in[3], const ptrdiff_t yuv_in_stride[3],
42  int w, int h, const int16_t yuv2yuv_coeffs[3][3][8],
43  const int16_t yuv_offset[2][8]);
44 
50 };
51 
57 };
58 
59 typedef struct ColorSpaceDSPContext {
60  /* Convert input YUV pixel buffer from a user into an internal, 15bpp array
61  * of intermediate RGB data. */
63  /* Convert intermediate RGB data (15bpp, internal format) into YUV data and
64  * store into user-provided output buffer */
66  /* Same as rgb2yuv(), but use floyd-steinberg dithering */
68  /* Direct yuv-to-yuv conversion (input and output are both user-provided
69  * buffers) */
70  yuv2yuv_fn yuv2yuv[NB_BPP /* in */][NB_BPP /* out */][NB_SS];
71 
72  /* In-place 3x3 matrix multiplication. Input and output are both 15bpp
73  * (our internal data format) */
74  void (*multiply3x3)(int16_t *data[3], ptrdiff_t stride,
75  int w, int h, const int16_t m[3][3][8]);
77 
79 
80 /* internal */
82 
83 #endif /* AVFILTER_COLORSPACEDSP_H */
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
ChromaSubsamplingIndex
Definition: colorspacedsp.h:52
void(* yuv2rgb_fn)(int16_t *rgb[3], ptrdiff_t rgb_stride, uint8_t *yuv[3], const ptrdiff_t yuv_stride[3], int w, int h, const int16_t yuv2rgb_coeffs[3][3][8], const int16_t yuv_offset[8])
Definition: colorspacedsp.h:27
void ff_colorspacedsp_init(ColorSpaceDSPContext *dsp)
uint8_t
void ff_colorspacedsp_x86_init(ColorSpaceDSPContext *dsp)
BitDepthIndex
Definition: colorspacedsp.h:45
void(* yuv2yuv_fn)(uint8_t *yuv_out[3], const ptrdiff_t yuv_out_stride[3], uint8_t *yuv_in[3], const ptrdiff_t yuv_in_stride[3], int w, int h, const int16_t yuv2yuv_coeffs[3][3][8], const int16_t yuv_offset[2][8])
Definition: colorspacedsp.h:40
uint8_t w
Definition: llviddspenc.c:38
void(* rgb2yuv_fsb_fn)(uint8_t *yuv[3], const ptrdiff_t yuv_stride[3], int16_t *rgb[3], ptrdiff_t rgb_stride, int w, int h, const int16_t rgb2yuv_coeffs[3][3][8], const int16_t yuv_offset[8], int *rnd[3][2])
Definition: colorspacedsp.h:35
typedef void(APIENTRY *FF_PFNGLACTIVETEXTUREPROC)(GLenum texture)
void(* multiply3x3)(int16_t *data[3], ptrdiff_t stride, int w, int h, const int16_t m[3][3][8])
Definition: colorspacedsp.h:74
void(* rgb2yuv_fn)(uint8_t *yuv[3], const ptrdiff_t yuv_stride[3], int16_t *rgb[3], ptrdiff_t rgb_stride, int w, int h, const int16_t rgb2yuv_coeffs[3][3][8], const int16_t yuv_offset[8])
Definition: colorspacedsp.h:31
yuv2yuv_fn yuv2yuv[NB_BPP][NB_BPP][NB_SS]
Definition: colorspacedsp.h:70
rgb2yuv_fn rgb2yuv[NB_BPP][NB_SS]
Definition: colorspacedsp.h:65
yuv2rgb_fn yuv2rgb[NB_BPP][NB_SS]
Definition: colorspacedsp.h:62
#define rnd()
Definition: checkasm.h:101
#define stride
rgb2yuv_fsb_fn rgb2yuv_fsb[NB_BPP][NB_SS]
Definition: colorspacedsp.h:67