FFmpeg
Loading...
Searching...
No Matches
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
27typedef 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]);
31typedef 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]);
35typedef 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]);
40typedef 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
51
58
59typedef 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 */
#define rnd
Definition checkasm.h:136
ChromaSubsamplingIndex
@ SS_420
@ NB_SS
@ SS_444
@ SS_422
void ff_colorspacedsp_x86_init(ColorSpaceDSPContext *dsp)
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])
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])
void ff_colorspacedsp_init(ColorSpaceDSPContext *dsp)
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])
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])
BitDepthIndex
@ BPP_10
@ BPP_8
@ NB_BPP
@ BPP_12
uint8_t w
Definition llvidencdsp.c:39
const char data[16]
Definition mxf.c:149
rgb2yuv_fn rgb2yuv[NB_BPP][NB_SS]
rgb2yuv_fsb_fn rgb2yuv_fsb[NB_BPP][NB_SS]
yuv2yuv_fn yuv2yuv[NB_BPP][NB_BPP][NB_SS]
yuv2rgb_fn yuv2rgb[NB_BPP][NB_SS]
void(* multiply3x3)(int16_t *data[3], ptrdiff_t stride, int w, int h, const int16_t m[3][3][8])
Definition rpzaenc.c:60
#define stride