FFmpeg
graph.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2024 Niklas Haas
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 SWSCALE_GRAPH_H
22 #define SWSCALE_GRAPH_H
23 
24 #include <stdbool.h>
25 
26 #include "libavutil/slicethread.h"
27 #include "libavutil/buffer.h"
28 
29 #include "swscale.h"
30 #include "format.h"
31 #include "lut3d.h"
32 
33 static av_always_inline av_const int ff_fmt_vshift(enum AVPixelFormat fmt, int plane)
34 {
36  return (plane == 1 || plane == 2) ? desc->log2_chroma_h : 0;
37 }
38 
39 typedef struct SwsPass SwsPass;
40 typedef struct SwsGraph SwsGraph;
41 
42 /**
43  * Output `h` lines of filtered data. `out` and `in` point to the
44  * start of the image buffer for this pass.
45  */
46 typedef void (*SwsPassFunc)(const SwsFrame *out, const SwsFrame *in,
47  int y, int h, const SwsPass *pass);
48 
49 /**
50  * Function to run from the main thread before processing any lines.
51  */
52 typedef int (*SwsPassSetup)(const SwsFrame *out, const SwsFrame *in,
53  const SwsPass *pass);
54 
55 /**
56  * Represents an output buffer for a filter pass. During filter graph
57  * construction, these merely hold the metadata. Allocation of the underlying
58  * storage is deferred until after all filter passes are settled.
59  */
60 typedef struct SwsPassBuffer {
62 
63  int width, height; /* dimensions of this buffer */
64  AVFrame *avframe; /* backing storage for `frame` */
65 
66  /* Optional allocation hints for optimal performance */
67  int width_align; /* Align width to multiple of this */
68  int width_pad; /* Extra padding pixels */
69 
70  /**
71  * Map of planes which are directly copied from the pass input. These
72  * may be promoted from a memcpy to a refcopy.
73  *
74  * Each entry maps the output index to the corresponding input plane
75  * index, or -1 for no copythrough.
76  */
77  int plane_copy[4];
79 
80 /**
81  * Represents a single filter pass in the scaling graph. Each filter will
82  * read from some previous pass's output, and write to a buffer associated
83  * with the pass (or into the final output image).
84  */
85 struct SwsPass {
86  const SwsGraph *graph;
87 
88  /**
89  * Filter main execution function. Called from multiple threads, with
90  * the granularity dictated by `slice_h`. Individual slices sent to `run`
91  * are always equal to (or smaller than, for the last slice) `slice_h`.
92  */
94  SwsBackend backend; /* backend this pass is using, or 0 */
95  enum AVPixelFormat format; /* new pixel format */
96  int lines; /* pass dispatch size */
97  int slice_h; /* filter granularity */
99 
100  /**
101  * Filter input. This pass's output will be resolved to form this pass's.
102  * input. If NULL, the original input image is used.
103  */
105 
106  /**
107  * Filter output buffer. This struct is always allocated.
108  */
109  SwsPassBuffer *output; /* refstruct */
110 
111  /**
112  * Called once from the main thread before running the filter. Optional.
113  * Returns 0 or a negative error code.
114  */
116 
117  /**
118  * Optional private state and associated free() function.
119  */
120  void (*free)(void *priv);
121  void *priv;
122 };
123 
124 /**
125  * Align `width` to the optimal size for `pass`.
126  */
127 int ff_sws_pass_aligned_width(const SwsPass *pass, int width);
128 
129 /**
130  * Filter graph, which represents a 'baked' pixel format conversion.
131  */
132 typedef struct SwsGraph {
135  int num_threads; /* resolved at init() time */
136  bool incomplete; /* set during init() if formats had to be inferred */
137  bool noop; /* set during init() if the graph is a no-op */
138  SwsBackend backend; /* backends this graph is using, set during init() */
139 
141 
142  /**
143  * Map of planes which directly copied from the input. These may be
144  * promoted from a memcpy to a refcopy. This requires special handling
145  * by the caller.
146  *
147  * Each entry maps the output index to the corresponding input plane
148  * index, or -1 for no copythrough.
149  */
150  int plane_copy[4];
151 
152  /** Sorted sequence of filter passes to apply */
155 
156  /**
157  * Cached copy of the public options that were used to construct this
158  * SwsGraph. Used only to detect when the graph needs to be reinitialized.
159  */
161 
162  /**
163  * Currently active format and processing parameters.
164  */
166 
167  /**
168  * 3DLUT state used for gamut/tone mapping. (Optional)
169  */
170  SwsLut3D *lut3d; /* refstruct */
171 
172  /**
173  * Temporary execution state inside ff_sws_graph_run(); used to pass
174  * data to worker threads.
175  */
176  struct {
177  const SwsPass *pass; /* current filter pass */
178  const SwsFrame *input; /* current filter pass input/output */
179  const SwsFrame *output;
180  } exec;
181 } SwsGraph;
182 
183 /**
184  * Allocate an empty SwsGraph. Returns NULL on failure.
185  */
187 
188 /**
189  * Initialize the filter graph for a given pair of formats. Returns 0 or a
190  * negative error.
191  */
193  const SwsFormat *src);
194 
195 
196 /**
197  * Allocate and add a new pass to the filter graph. Takes over ownership of
198  * `priv`, even on failure.
199  *
200  * @param graph Filter graph to add the pass to.
201  * @param fmt Pixel format of the output image.
202  * @param w Width of the output image.
203  * @param h Height of the output image.
204  * @param input Previous pass to read from, or NULL for the input image.
205  * @param lines Override the number of lines processed for this pass. (Optional)
206  * @param align Minimum slice alignment for this pass, or 0 for no threading.
207  * @param run Filter function to run.
208  * @param setup Optional setup function to run from the main thread.
209  * @param priv Private state for the filter run function.
210  * @param free Function to free the private state.
211  * @param out_pass The newly added pass will be written here on success.
212  * @return 0 or a negative error code
213  */
214 int ff_sws_graph_add_pass(SwsGraph *graph, enum AVPixelFormat fmt,
215  int width, int height, SwsPass *input,
216  int lines, int align,
218  void *priv, void (*free)(void *priv),
219  SwsPass **out_pass);
220 
221 /**
222  * Link the output buffers to a different pass, rather than allocating
223  * new image buffers. This allows reusing the same buffer for multiple passes,
224  * e.g. in the case of in-place passes or partial passes that modify different
225  * planes.
226  *
227  * Any existing buffer on `dst` will be ignored/unref'd.
228  **/
230 
231 /**
232  * Remove all passes added since the given index.
233  */
234 void ff_sws_graph_rollback(SwsGraph *graph, int since_idx);
235 
236 /**
237  * Uninitialize any state associate with this filter graph and free it.
238  */
239 void ff_sws_graph_free(SwsGraph **graph);
240 
241 /**
242  * Update dynamic per-frame HDR metadata without requiring a full reinit.
243  */
245 
246 /**
247  * Wrapper around ff_sws_graph_init() that reuses the existing graph if the
248  * format is compatible. This will also update dynamic per-frame metadata.
249  *
250  * Must also be called after changing any of the fields in `ctx`, or else they
251  * will have no effect.
252  */
254  const SwsFormat *src);
255 
256 /**
257  * Dispatch the filter graph on a single field of the given frames. Internally
258  * threaded.
259  */
260 int ff_sws_graph_run(SwsGraph *graph, const AVFrame *dst, const AVFrame *src);
261 
262 #endif /* SWSCALE_GRAPH_H */
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:71
SwsGraph::slicethread
AVSliceThread * slicethread
Definition: graph.h:134
SwsGraph::ctx
SwsContext * ctx
Definition: graph.h:133
SwsPass
Represents a single filter pass in the scaling graph.
Definition: graph.h:85
SwsGraph::pass
const SwsPass * pass
Definition: graph.h:177
ff_sws_graph_init
int ff_sws_graph_init(SwsGraph *graph, SwsContext *ctx, const SwsFormat *dst, const SwsFormat *src)
Initialize the filter graph for a given pair of formats.
Definition: graph.c:884
SwsGraph::passes
SwsPass ** passes
Sorted sequence of filter passes to apply.
Definition: graph.h:153
out
static FILE * out
Definition: movenc.c:55
SwsGraph::plane_copy
int plane_copy[4]
Map of planes which directly copied from the input.
Definition: graph.h:150
color
Definition: vf_paletteuse.c:513
ff_sws_graph_alloc
SwsGraph * ff_sws_graph_alloc(void)
Allocate an empty SwsGraph.
Definition: graph.c:866
av_pix_fmt_desc_get
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:3460
SwsPass::lines
int lines
Definition: graph.h:96
SwsPass::format
enum AVPixelFormat format
Definition: graph.h:95
SwsGraph::lut3d
SwsLut3D * lut3d
3DLUT state used for gamut/tone mapping.
Definition: graph.h:170
SwsGraph::src
SwsFormat src
Currently active format and processing parameters.
Definition: graph.h:165
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:472
ff_sws_pass_aligned_width
int ff_sws_pass_aligned_width(const SwsPass *pass, int width)
Align width to the optimal size for pass.
Definition: graph.c:46
SwsGraph::output
const SwsFrame * output
Definition: graph.h:179
SwsPass::backend
SwsBackend backend
Definition: graph.h:94
SwsPass::setup
SwsPassSetup setup
Called once from the main thread before running the filter.
Definition: graph.h:115
SwsPass::free
void(* free)(void *priv)
Optional private state and associated free() function.
Definition: graph.h:120
format.h
AVSliceThread
struct AVSliceThread AVSliceThread
Definition: slicethread.h:25
SwsPass::input
SwsPass * input
Filter input.
Definition: graph.h:104
av_always_inline
#define av_always_inline
Definition: attributes.h:76
ff_sws_graph_rollback
void ff_sws_graph_rollback(SwsGraph *graph, int since_idx)
Remove all passes added since the given index.
Definition: graph.c:935
ff_sws_graph_add_pass
int ff_sws_graph_add_pass(SwsGraph *graph, enum AVPixelFormat fmt, int width, int height, SwsPass *input, int lines, int align, SwsPassFunc run, SwsPassSetup setup, void *priv, void(*free)(void *priv), SwsPass **out_pass)
Allocate and add a new pass to the filter graph.
Definition: graph.c:191
SwsGraph::opts_copy
SwsContext opts_copy
Cached copy of the public options that were used to construct this SwsGraph.
Definition: graph.h:160
SwsPassBuffer::frame
SwsFrame frame
Definition: graph.h:61
SwsFrame
Represents a view into a single field of frame data.
Definition: format.h:236
SwsBackend
SwsBackend
Definition: swscale.h:110
SwsGraph::exec
struct SwsGraph::@582 exec
Temporary execution state inside ff_sws_graph_run(); used to pass data to worker threads.
av_const
#define av_const
Definition: attributes.h:113
SwsPass::priv
void * priv
Definition: graph.h:121
SwsPassBuffer::plane_copy
int plane_copy[4]
Map of planes which are directly copied from the pass input.
Definition: graph.h:77
ff_sws_graph_update_metadata
void ff_sws_graph_update_metadata(SwsGraph *graph, const SwsColor *color)
Update dynamic per-frame HDR metadata without requiring a full reinit.
Definition: graph.c:987
SwsGraph::num_passes
int num_passes
Definition: graph.h:154
ctx
static AVFormatContext * ctx
Definition: movenc.c:49
SwsPass::run
SwsPassFunc run
Filter main execution function.
Definition: graph.h:93
run
uint8_t run
Definition: svq3.c:207
ff_sws_pass_link_output
void ff_sws_pass_link_output(SwsPass *dst, const SwsPass *src)
Link the output buffers to a different pass, rather than allocating new image buffers.
Definition: graph.c:249
SwsPass::graph
const SwsGraph * graph
Definition: graph.h:86
SwsPassBuffer::avframe
AVFrame * avframe
Definition: graph.h:64
lut3d.h
SwsGraph::hw_frames_ref
AVBufferRef * hw_frames_ref
Definition: graph.h:140
height
#define height
Definition: dsp.h:89
dst
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition: dsp.h:87
SwsGraph::backend
SwsBackend backend
Definition: graph.h:138
SwsPassBuffer::height
int height
Definition: graph.h:63
SwsFormat
Definition: format.h:77
buffer.h
align
static const uint8_t *BS_FUNC() align(BSCTX *bc)
Skip bits to a byte boundary.
Definition: bitstream_template.h:419
SwsColor
Definition: format.h:60
SwsPass::output
SwsPassBuffer * output
Filter output buffer.
Definition: graph.h:109
input
and forward the test the status of outputs and forward it to the corresponding return FFERROR_NOT_READY If the filters stores internally one or a few frame for some input
Definition: filter_design.txt:172
slicethread.h
SwsGraph::input
const SwsFrame * input
Definition: graph.h:178
ff_sws_graph_reinit
int ff_sws_graph_reinit(SwsGraph *graph, SwsContext *ctx, const SwsFormat *dst, const SwsFormat *src)
Wrapper around ff_sws_graph_init() that reuses the existing graph if the format is compatible.
Definition: graph.c:973
SwsPassBuffer::width_align
int width_align
Definition: graph.h:67
SwsLut3D
Append a set of operations for applying a gamut/tone mapping 3D LUT to the pixels.
Definition: lut3d.h:50
SwsGraph::dst
SwsFormat dst
Definition: graph.h:165
ff_fmt_vshift
static av_always_inline av_const int ff_fmt_vshift(enum AVPixelFormat fmt, int plane)
Definition: graph.h:33
SwsPass::slice_h
int slice_h
Definition: graph.h:97
SwsGraph::num_threads
int num_threads
Definition: graph.h:135
SwsPassFunc
void(* SwsPassFunc)(const SwsFrame *out, const SwsFrame *in, int y, int h, const SwsPass *pass)
Output h lines of filtered data.
Definition: graph.h:46
SwsPassBuffer::width_pad
int width_pad
Definition: graph.h:68
SwsGraph::noop
bool noop
Definition: graph.h:137
SwsPassBuffer::width
int width
Definition: graph.h:63
SwsPassSetup
int(* SwsPassSetup)(const SwsFrame *out, const SwsFrame *in, const SwsPass *pass)
Function to run from the main thread before processing any lines.
Definition: graph.h:52
desc
const char * desc
Definition: libsvtav1.c:83
SwsGraph::incomplete
bool incomplete
Definition: graph.h:136
AVBufferRef
A reference to a data buffer.
Definition: buffer.h:82
SwsGraph
Filter graph, which represents a 'baked' pixel format conversion.
Definition: graph.h:132
AVPixFmtDescriptor
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
SwsPassBuffer
Represents an output buffer for a filter pass.
Definition: graph.h:60
h
h
Definition: vp9dsp_template.c:2070
SwsPass::num_slices
int num_slices
Definition: graph.h:98
width
#define width
Definition: dsp.h:89
SwsContext
Main external API structure.
Definition: swscale.h:227
ff_sws_graph_run
int ff_sws_graph_run(SwsGraph *graph, const AVFrame *dst, const AVFrame *src)
Dispatch the filter graph on a single field of the given frames.
Definition: graph.c:1026
ff_sws_graph_free
void ff_sws_graph_free(SwsGraph **graph)
Uninitialize any state associate with this filter graph and free it.
Definition: graph.c:942
src
#define src
Definition: vp8dsp.c:248
swscale.h