]> git.sesse.net Git - ffmpeg/blob - libavfilter/avfilter.h
lavfi: add testsrc source
[ffmpeg] / libavfilter / avfilter.h
1 /*
2  * filter layer
3  * Copyright (c) 2007 Bobby Bingham
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #ifndef AVFILTER_AVFILTER_H
23 #define AVFILTER_AVFILTER_H
24
25 #include "libavutil/avutil.h"
26 #include "libavutil/samplefmt.h"
27
28 #define LIBAVFILTER_VERSION_MAJOR  2
29 #define LIBAVFILTER_VERSION_MINOR 24
30 #define LIBAVFILTER_VERSION_MICRO  0
31
32 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
33                                                LIBAVFILTER_VERSION_MINOR, \
34                                                LIBAVFILTER_VERSION_MICRO)
35 #define LIBAVFILTER_VERSION     AV_VERSION(LIBAVFILTER_VERSION_MAJOR,   \
36                                            LIBAVFILTER_VERSION_MINOR,   \
37                                            LIBAVFILTER_VERSION_MICRO)
38 #define LIBAVFILTER_BUILD       LIBAVFILTER_VERSION_INT
39
40 #include <stddef.h>
41
42 /**
43  * Return the LIBAVFILTER_VERSION_INT constant.
44  */
45 unsigned avfilter_version(void);
46
47 /**
48  * Return the libavfilter build-time configuration.
49  */
50 const char *avfilter_configuration(void);
51
52 /**
53  * Return the libavfilter license.
54  */
55 const char *avfilter_license(void);
56
57
58 typedef struct AVFilterContext AVFilterContext;
59 typedef struct AVFilterLink    AVFilterLink;
60 typedef struct AVFilterPad     AVFilterPad;
61
62 /**
63  * A reference-counted buffer data type used by the filter system. Filters
64  * should not store pointers to this structure directly, but instead use the
65  * AVFilterBufferRef structure below.
66  */
67 typedef struct AVFilterBuffer {
68     uint8_t *data[8];           ///< buffer data for each plane/channel
69     int linesize[8];            ///< number of bytes per line
70
71     unsigned refcount;          ///< number of references to this buffer
72
73     /** private data to be used by a custom free function */
74     void *priv;
75     /**
76      * A pointer to the function to deallocate this buffer if the default
77      * function is not sufficient. This could, for example, add the memory
78      * back into a memory pool to be reused later without the overhead of
79      * reallocating it from scratch.
80      */
81     void (*free)(struct AVFilterBuffer *buf);
82
83     int format;                 ///< media format
84     int w, h;                   ///< width and height of the allocated buffer
85 } AVFilterBuffer;
86
87 #define AV_PERM_READ     0x01   ///< can read from the buffer
88 #define AV_PERM_WRITE    0x02   ///< can write to the buffer
89 #define AV_PERM_PRESERVE 0x04   ///< nobody else can overwrite the buffer
90 #define AV_PERM_REUSE    0x08   ///< can output the buffer multiple times, with the same contents each time
91 #define AV_PERM_REUSE2   0x10   ///< can output the buffer multiple times, modified each time
92 #define AV_PERM_NEG_LINESIZES 0x20  ///< the buffer requested can have negative linesizes
93
94 /**
95  * Audio specific properties in a reference to an AVFilterBuffer. Since
96  * AVFilterBufferRef is common to different media formats, audio specific
97  * per reference properties must be separated out.
98  */
99 typedef struct AVFilterBufferRefAudioProps {
100     int64_t channel_layout;     ///< channel layout of audio buffer
101     int nb_samples;             ///< number of audio samples per channel
102     uint32_t sample_rate;       ///< audio buffer sample rate
103     int planar;                 ///< audio buffer - planar or packed
104 } AVFilterBufferRefAudioProps;
105
106 /**
107  * Video specific properties in a reference to an AVFilterBuffer. Since
108  * AVFilterBufferRef is common to different media formats, video specific
109  * per reference properties must be separated out.
110  */
111 typedef struct AVFilterBufferRefVideoProps {
112     int w;                      ///< image width
113     int h;                      ///< image height
114     AVRational sample_aspect_ratio; ///< sample aspect ratio
115     int interlaced;             ///< is frame interlaced
116     int top_field_first;        ///< field order
117     enum AVPictureType pict_type; ///< picture type of the frame
118     int key_frame;              ///< 1 -> keyframe, 0-> not
119 } AVFilterBufferRefVideoProps;
120
121 /**
122  * A reference to an AVFilterBuffer. Since filters can manipulate the origin of
123  * a buffer to, for example, crop image without any memcpy, the buffer origin
124  * and dimensions are per-reference properties. Linesize is also useful for
125  * image flipping, frame to field filters, etc, and so is also per-reference.
126  *
127  * TODO: add anything necessary for frame reordering
128  */
129 typedef struct AVFilterBufferRef {
130     AVFilterBuffer *buf;        ///< the buffer that this is a reference to
131     uint8_t *data[8];           ///< picture/audio data for each plane
132     int linesize[8];            ///< number of bytes per line
133     int format;                 ///< media format
134
135     /**
136      * presentation timestamp. The time unit may change during
137      * filtering, as it is specified in the link and the filter code
138      * may need to rescale the PTS accordingly.
139      */
140     int64_t pts;
141     int64_t pos;                ///< byte position in stream, -1 if unknown
142
143     int perms;                  ///< permissions, see the AV_PERM_* flags
144
145     enum AVMediaType type;      ///< media type of buffer data
146     AVFilterBufferRefVideoProps *video; ///< video buffer specific properties
147     AVFilterBufferRefAudioProps *audio; ///< audio buffer specific properties
148 } AVFilterBufferRef;
149
150 /**
151  * Copy properties of src to dst, without copying the actual data
152  */
153 static inline void avfilter_copy_buffer_ref_props(AVFilterBufferRef *dst, AVFilterBufferRef *src)
154 {
155     // copy common properties
156     dst->pts             = src->pts;
157     dst->pos             = src->pos;
158
159     switch (src->type) {
160     case AVMEDIA_TYPE_VIDEO: *dst->video = *src->video; break;
161     case AVMEDIA_TYPE_AUDIO: *dst->audio = *src->audio; break;
162     }
163 }
164
165 /**
166  * Add a new reference to a buffer.
167  *
168  * @param ref   an existing reference to the buffer
169  * @param pmask a bitmask containing the allowable permissions in the new
170  *              reference
171  * @return      a new reference to the buffer with the same properties as the
172  *              old, excluding any permissions denied by pmask
173  */
174 AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask);
175
176 /**
177  * Remove a reference to a buffer. If this is the last reference to the
178  * buffer, the buffer itself is also automatically freed.
179  *
180  * @param ref reference to the buffer, may be NULL
181  */
182 void avfilter_unref_buffer(AVFilterBufferRef *ref);
183
184 /**
185  * A list of supported formats for one end of a filter link. This is used
186  * during the format negotiation process to try to pick the best format to
187  * use to minimize the number of necessary conversions. Each filter gives a
188  * list of the formats supported by each input and output pad. The list
189  * given for each pad need not be distinct - they may be references to the
190  * same list of formats, as is often the case when a filter supports multiple
191  * formats, but will always output the same format as it is given in input.
192  *
193  * In this way, a list of possible input formats and a list of possible
194  * output formats are associated with each link. When a set of formats is
195  * negotiated over a link, the input and output lists are merged to form a
196  * new list containing only the common elements of each list. In the case
197  * that there were no common elements, a format conversion is necessary.
198  * Otherwise, the lists are merged, and all other links which reference
199  * either of the format lists involved in the merge are also affected.
200  *
201  * For example, consider the filter chain:
202  * filter (a) --> (b) filter (b) --> (c) filter
203  *
204  * where the letters in parenthesis indicate a list of formats supported on
205  * the input or output of the link. Suppose the lists are as follows:
206  * (a) = {A, B}
207  * (b) = {A, B, C}
208  * (c) = {B, C}
209  *
210  * First, the first link's lists are merged, yielding:
211  * filter (a) --> (a) filter (a) --> (c) filter
212  *
213  * Notice that format list (b) now refers to the same list as filter list (a).
214  * Next, the lists for the second link are merged, yielding:
215  * filter (a) --> (a) filter (a) --> (a) filter
216  *
217  * where (a) = {B}.
218  *
219  * Unfortunately, when the format lists at the two ends of a link are merged,
220  * we must ensure that all links which reference either pre-merge format list
221  * get updated as well. Therefore, we have the format list structure store a
222  * pointer to each of the pointers to itself.
223  */
224 typedef struct AVFilterFormats {
225     unsigned format_count;      ///< number of formats
226     int64_t *formats;           ///< list of media formats
227
228     unsigned refcount;          ///< number of references to this list
229     struct AVFilterFormats ***refs; ///< references to this list
230 }  AVFilterFormats;
231
232 /**
233  * Create a list of supported formats. This is intended for use in
234  * AVFilter->query_formats().
235  *
236  * @param fmts list of media formats, terminated by -1. If NULL an
237  *        empty list is created.
238  * @return the format list, with no existing references
239  */
240 AVFilterFormats *avfilter_make_format_list(const int *fmts);
241 AVFilterFormats *avfilter_make_format64_list(const int64_t *fmts);
242
243 /**
244  * Add fmt to the list of media formats contained in *avff.
245  * If *avff is NULL the function allocates the filter formats struct
246  * and puts its pointer in *avff.
247  *
248  * @return a non negative value in case of success, or a negative
249  * value corresponding to an AVERROR code in case of error
250  */
251 int avfilter_add_format(AVFilterFormats **avff, int64_t fmt);
252
253 /**
254  * Return a list of all formats supported by FFmpeg for the given media type.
255  */
256 AVFilterFormats *avfilter_all_formats(enum AVMediaType type);
257
258 /**
259  * Return a list of all channel layouts supported by FFmpeg.
260  */
261 AVFilterFormats *avfilter_all_channel_layouts(void);
262
263 /**
264  * Return a format list which contains the intersection of the formats of
265  * a and b. Also, all the references of a, all the references of b, and
266  * a and b themselves will be deallocated.
267  *
268  * If a and b do not share any common formats, neither is modified, and NULL
269  * is returned.
270  */
271 AVFilterFormats *avfilter_merge_formats(AVFilterFormats *a, AVFilterFormats *b);
272
273 /**
274  * Add *ref as a new reference to formats.
275  * That is the pointers will point like in the ascii art below:
276  *   ________
277  *  |formats |<--------.
278  *  |  ____  |     ____|___________________
279  *  | |refs| |    |  __|_
280  *  | |* * | |    | |  | |  AVFilterLink
281  *  | |* *--------->|*ref|
282  *  | |____| |    | |____|
283  *  |________|    |________________________
284  */
285 void avfilter_formats_ref(AVFilterFormats *formats, AVFilterFormats **ref);
286
287 /**
288  * If *ref is non-NULL, remove *ref as a reference to the format list
289  * it currently points to, deallocates that list if this was the last
290  * reference, and sets *ref to NULL.
291  *
292  *         Before                                 After
293  *   ________                               ________         NULL
294  *  |formats |<--------.                   |formats |         ^
295  *  |  ____  |     ____|________________   |  ____  |     ____|________________
296  *  | |refs| |    |  __|_                  | |refs| |    |  __|_
297  *  | |* * | |    | |  | |  AVFilterLink   | |* * | |    | |  | |  AVFilterLink
298  *  | |* *--------->|*ref|                 | |*   | |    | |*ref|
299  *  | |____| |    | |____|                 | |____| |    | |____|
300  *  |________|    |_____________________   |________|    |_____________________
301  */
302 void avfilter_formats_unref(AVFilterFormats **ref);
303
304 /**
305  *
306  *         Before                                 After
307  *   ________                         ________
308  *  |formats |<---------.            |formats |<---------.
309  *  |  ____  |       ___|___         |  ____  |       ___|___
310  *  | |refs| |      |   |   |        | |refs| |      |   |   |   NULL
311  *  | |* *--------->|*oldref|        | |* *--------->|*newref|     ^
312  *  | |* * | |      |_______|        | |* * | |      |_______|  ___|___
313  *  | |____| |                       | |____| |                |   |   |
314  *  |________|                       |________|                |*oldref|
315  *                                                             |_______|
316  */
317 void avfilter_formats_changeref(AVFilterFormats **oldref,
318                                 AVFilterFormats **newref);
319
320 /**
321  * A filter pad used for either input or output.
322  */
323 struct AVFilterPad {
324     /**
325      * Pad name. The name is unique among inputs and among outputs, but an
326      * input may have the same name as an output. This may be NULL if this
327      * pad has no need to ever be referenced by name.
328      */
329     const char *name;
330
331     /**
332      * AVFilterPad type. Only video supported now, hopefully someone will
333      * add audio in the future.
334      */
335     enum AVMediaType type;
336
337     /**
338      * Minimum required permissions on incoming buffers. Any buffer with
339      * insufficient permissions will be automatically copied by the filter
340      * system to a new buffer which provides the needed access permissions.
341      *
342      * Input pads only.
343      */
344     int min_perms;
345
346     /**
347      * Permissions which are not accepted on incoming buffers. Any buffer
348      * which has any of these permissions set will be automatically copied
349      * by the filter system to a new buffer which does not have those
350      * permissions. This can be used to easily disallow buffers with
351      * AV_PERM_REUSE.
352      *
353      * Input pads only.
354      */
355     int rej_perms;
356
357     /**
358      * Callback called before passing the first slice of a new frame. If
359      * NULL, the filter layer will default to storing a reference to the
360      * picture inside the link structure.
361      *
362      * Input video pads only.
363      */
364     void (*start_frame)(AVFilterLink *link, AVFilterBufferRef *picref);
365
366     /**
367      * Callback function to get a video buffer. If NULL, the filter system will
368      * use avfilter_default_get_video_buffer().
369      *
370      * Input video pads only.
371      */
372     AVFilterBufferRef *(*get_video_buffer)(AVFilterLink *link, int perms, int w, int h);
373
374     /**
375      * Callback function to get an audio buffer. If NULL, the filter system will
376      * use avfilter_default_get_audio_buffer().
377      *
378      * Input audio pads only.
379      */
380     AVFilterBufferRef *(*get_audio_buffer)(AVFilterLink *link, int perms,
381                                            enum AVSampleFormat sample_fmt, int nb_samples,
382                                            int64_t channel_layout, int planar);
383
384     /**
385      * Callback called after the slices of a frame are completely sent. If
386      * NULL, the filter layer will default to releasing the reference stored
387      * in the link structure during start_frame().
388      *
389      * Input video pads only.
390      */
391     void (*end_frame)(AVFilterLink *link);
392
393     /**
394      * Slice drawing callback. This is where a filter receives video data
395      * and should do its processing.
396      *
397      * Input video pads only.
398      */
399     void (*draw_slice)(AVFilterLink *link, int y, int height, int slice_dir);
400
401     /**
402      * Samples filtering callback. This is where a filter receives audio data
403      * and should do its processing.
404      *
405      * Input audio pads only.
406      */
407     void (*filter_samples)(AVFilterLink *link, AVFilterBufferRef *samplesref);
408
409     /**
410      * Frame poll callback. This returns the number of immediately available
411      * samples. It should return a positive value if the next request_frame()
412      * is guaranteed to return one frame (with no delay).
413      *
414      * Defaults to just calling the source poll_frame() method.
415      *
416      * Output video pads only.
417      */
418     int (*poll_frame)(AVFilterLink *link);
419
420     /**
421      * Frame request callback. A call to this should result in at least one
422      * frame being output over the given link. This should return zero on
423      * success, and another value on error.
424      *
425      * Output video pads only.
426      */
427     int (*request_frame)(AVFilterLink *link);
428
429     /**
430      * Link configuration callback.
431      *
432      * For output pads, this should set the link properties such as
433      * width/height. This should NOT set the format property - that is
434      * negotiated between filters by the filter system using the
435      * query_formats() callback before this function is called.
436      *
437      * For input pads, this should check the properties of the link, and update
438      * the filter's internal state as necessary.
439      *
440      * For both input and output filters, this should return zero on success,
441      * and another value on error.
442      */
443     int (*config_props)(AVFilterLink *link);
444 };
445
446 /** default handler for start_frame() for video inputs */
447 void avfilter_default_start_frame(AVFilterLink *link, AVFilterBufferRef *picref);
448
449 /** default handler for draw_slice() for video inputs */
450 void avfilter_default_draw_slice(AVFilterLink *link, int y, int h, int slice_dir);
451
452 /** default handler for end_frame() for video inputs */
453 void avfilter_default_end_frame(AVFilterLink *link);
454
455 /** default handler for filter_samples() for audio inputs */
456 void avfilter_default_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref);
457
458 /** default handler for config_props() for audio/video outputs */
459 int avfilter_default_config_output_link(AVFilterLink *link);
460
461 /** default handler for config_props() for audio/video inputs */
462 int avfilter_default_config_input_link (AVFilterLink *link);
463
464 /** default handler for get_video_buffer() for video inputs */
465 AVFilterBufferRef *avfilter_default_get_video_buffer(AVFilterLink *link,
466                                                      int perms, int w, int h);
467
468 /** default handler for get_audio_buffer() for audio inputs */
469 AVFilterBufferRef *avfilter_default_get_audio_buffer(AVFilterLink *link, int perms,
470                                                      enum AVSampleFormat sample_fmt, int nb_samples,
471                                                      int64_t channel_layout, int planar);
472
473 /**
474  * Helpers for query_formats() which set all links to the same list of
475  * formats/layouts. If there are no links hooked to this filter, the list
476  * of formats is freed.
477  */
478 void avfilter_set_common_pixel_formats(AVFilterContext *ctx, AVFilterFormats *formats);
479 void avfilter_set_common_sample_formats(AVFilterContext *ctx, AVFilterFormats *formats);
480 void avfilter_set_common_channel_layouts(AVFilterContext *ctx, AVFilterFormats *formats);
481
482 /** Default handler for query_formats() */
483 int avfilter_default_query_formats(AVFilterContext *ctx);
484
485 /** start_frame() handler for filters which simply pass video along */
486 void avfilter_null_start_frame(AVFilterLink *link, AVFilterBufferRef *picref);
487
488 /** draw_slice() handler for filters which simply pass video along */
489 void avfilter_null_draw_slice(AVFilterLink *link, int y, int h, int slice_dir);
490
491 /** end_frame() handler for filters which simply pass video along */
492 void avfilter_null_end_frame(AVFilterLink *link);
493
494 /** filter_samples() handler for filters which simply pass audio along */
495 void avfilter_null_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref);
496
497 /** get_video_buffer() handler for filters which simply pass video along */
498 AVFilterBufferRef *avfilter_null_get_video_buffer(AVFilterLink *link,
499                                                   int perms, int w, int h);
500
501 /** get_audio_buffer() handler for filters which simply pass audio along */
502 AVFilterBufferRef *avfilter_null_get_audio_buffer(AVFilterLink *link, int perms,
503                                                   enum AVSampleFormat sample_fmt, int size,
504                                                   int64_t channel_layout, int planar);
505
506 /**
507  * Filter definition. This defines the pads a filter contains, and all the
508  * callback functions used to interact with the filter.
509  */
510 typedef struct AVFilter {
511     const char *name;         ///< filter name
512
513     int priv_size;      ///< size of private data to allocate for the filter
514
515     /**
516      * Filter initialization function. Args contains the user-supplied
517      * parameters. FIXME: maybe an AVOption-based system would be better?
518      * opaque is data provided by the code requesting creation of the filter,
519      * and is used to pass data to the filter.
520      */
521     int (*init)(AVFilterContext *ctx, const char *args, void *opaque);
522
523     /**
524      * Filter uninitialization function. Should deallocate any memory held
525      * by the filter, release any buffer references, etc. This does not need
526      * to deallocate the AVFilterContext->priv memory itself.
527      */
528     void (*uninit)(AVFilterContext *ctx);
529
530     /**
531      * Queries formats/layouts supported by the filter and its pads, and sets
532      * the in_formats/in_chlayouts for links connected to its output pads,
533      * and out_formats/out_chlayouts for links connected to its input pads.
534      *
535      * @return zero on success, a negative value corresponding to an
536      * AVERROR code otherwise
537      */
538     int (*query_formats)(AVFilterContext *);
539
540     const AVFilterPad *inputs;  ///< NULL terminated list of inputs. NULL if none
541     const AVFilterPad *outputs; ///< NULL terminated list of outputs. NULL if none
542
543     /**
544      * A description for the filter. You should use the
545      * NULL_IF_CONFIG_SMALL() macro to define it.
546      */
547     const char *description;
548 } AVFilter;
549
550 /** An instance of a filter */
551 struct AVFilterContext {
552     const AVClass *av_class;              ///< needed for av_log()
553
554     AVFilter *filter;               ///< the AVFilter of which this is an instance
555
556     char *name;                     ///< name of this filter instance
557
558     unsigned input_count;           ///< number of input pads
559     AVFilterPad   *input_pads;      ///< array of input pads
560     AVFilterLink **inputs;          ///< array of pointers to input links
561
562     unsigned output_count;          ///< number of output pads
563     AVFilterPad   *output_pads;     ///< array of output pads
564     AVFilterLink **outputs;         ///< array of pointers to output links
565
566     void *priv;                     ///< private data for use by the filter
567 };
568
569 /**
570  * A link between two filters. This contains pointers to the source and
571  * destination filters between which this link exists, and the indexes of
572  * the pads involved. In addition, this link also contains the parameters
573  * which have been negotiated and agreed upon between the filter, such as
574  * image dimensions, format, etc.
575  */
576 struct AVFilterLink {
577     AVFilterContext *src;       ///< source filter
578     AVFilterPad *srcpad;        ///< output pad on the source filter
579
580     AVFilterContext *dst;       ///< dest filter
581     AVFilterPad *dstpad;        ///< input pad on the dest filter
582
583     /** stage of the initialization of the link properties (dimensions, etc) */
584     enum {
585         AVLINK_UNINIT = 0,      ///< not started
586         AVLINK_STARTINIT,       ///< started, but incomplete
587         AVLINK_INIT             ///< complete
588     } init_state;
589
590     enum AVMediaType type;      ///< filter media type
591
592     /* These parameters apply only to video */
593     int w;                      ///< agreed upon image width
594     int h;                      ///< agreed upon image height
595     AVRational sample_aspect_ratio; ///< agreed upon sample aspect ratio
596     /* These two parameters apply only to audio */
597     int64_t channel_layout;     ///< channel layout of current buffer (see libavutil/audioconvert.h)
598     int64_t sample_rate;        ///< samples per second
599
600     int format;                 ///< agreed upon media format
601
602     /**
603      * Lists of formats and channel layouts supported by the input and output
604      * filters respectively. These lists are used for negotiating the format
605      * to actually be used, which will be loaded into the format and
606      * channel_layout members, above, when chosen.
607      *
608      */
609     AVFilterFormats *in_formats;
610     AVFilterFormats *out_formats;
611
612     AVFilterFormats *in_chlayouts;
613     AVFilterFormats *out_chlayouts;
614
615     /**
616      * The buffer reference currently being sent across the link by the source
617      * filter. This is used internally by the filter system to allow
618      * automatic copying of buffers which do not have sufficient permissions
619      * for the destination. This should not be accessed directly by the
620      * filters.
621      */
622     AVFilterBufferRef *src_buf;
623
624     AVFilterBufferRef *cur_buf;
625     AVFilterBufferRef *out_buf;
626
627     /**
628      * Define the time base used by the PTS of the frames/samples
629      * which will pass through this link.
630      * During the configuration stage, each filter is supposed to
631      * change only the output timebase, while the timebase of the
632      * input link is assumed to be an unchangeable property.
633      */
634     AVRational time_base;
635
636     struct AVFilterPool *pool;
637 };
638
639 /**
640  * Link two filters together.
641  *
642  * @param src    the source filter
643  * @param srcpad index of the output pad on the source filter
644  * @param dst    the destination filter
645  * @param dstpad index of the input pad on the destination filter
646  * @return       zero on success
647  */
648 int avfilter_link(AVFilterContext *src, unsigned srcpad,
649                   AVFilterContext *dst, unsigned dstpad);
650
651 /**
652  * Free the link in *link, and set its pointer to NULL.
653  */
654 void avfilter_link_free(AVFilterLink **link);
655
656 /**
657  * Negotiate the media format, dimensions, etc of all inputs to a filter.
658  *
659  * @param filter the filter to negotiate the properties for its inputs
660  * @return       zero on successful negotiation
661  */
662 int avfilter_config_links(AVFilterContext *filter);
663
664 /**
665  * Request a picture buffer with a specific set of permissions.
666  *
667  * @param link  the output link to the filter from which the buffer will
668  *              be requested
669  * @param perms the required access permissions
670  * @param w     the minimum width of the buffer to allocate
671  * @param h     the minimum height of the buffer to allocate
672  * @return      A reference to the buffer. This must be unreferenced with
673  *              avfilter_unref_buffer when you are finished with it.
674  */
675 AVFilterBufferRef *avfilter_get_video_buffer(AVFilterLink *link, int perms,
676                                           int w, int h);
677
678 /**
679  * Create a buffer reference wrapped around an already allocated image
680  * buffer.
681  *
682  * @param data pointers to the planes of the image to reference
683  * @param linesize linesizes for the planes of the image to reference
684  * @param perms the required access permissions
685  * @param w the width of the image specified by the data and linesize arrays
686  * @param h the height of the image specified by the data and linesize arrays
687  * @param format the pixel format of the image specified by the data and linesize arrays
688  */
689 AVFilterBufferRef *
690 avfilter_get_video_buffer_ref_from_arrays(uint8_t * const data[4], const int linesize[4], int perms,
691                                           int w, int h, enum PixelFormat format);
692
693 /**
694  * Request an audio samples buffer with a specific set of permissions.
695  *
696  * @param link           the output link to the filter from which the buffer will
697  *                       be requested
698  * @param perms          the required access permissions
699  * @param sample_fmt     the format of each sample in the buffer to allocate
700  * @param nb_samples     the number of samples per channel
701  * @param channel_layout the number and type of channels per sample in the buffer to allocate
702  * @param planar         audio data layout - planar or packed
703  * @return               A reference to the samples. This must be unreferenced with
704  *                       avfilter_unref_buffer when you are finished with it.
705  */
706 AVFilterBufferRef *avfilter_get_audio_buffer(AVFilterLink *link, int perms,
707                                              enum AVSampleFormat sample_fmt, int nb_samples,
708                                              int64_t channel_layout, int planar);
709
710 /**
711  * Create an audio buffer reference wrapped around an already
712  * allocated samples buffer.
713  *
714  * @param data           pointers to the samples plane buffers
715  * @param linesize       linesize for the samples plane buffers
716  * @param perms          the required access permissions
717  * @param nb_samples     number of samples per channel
718  * @param sample_fmt     the format of each sample in the buffer to allocate
719  * @param channel_layout the channel layout of the buffer
720  * @param planar         audio data layout - planar or packed
721  */
722 AVFilterBufferRef *
723 avfilter_get_audio_buffer_ref_from_arrays(uint8_t *data[8], int linesize[8], int perms,
724                                           int nb_samples, enum AVSampleFormat sample_fmt,
725                                           int64_t channel_layout, int planar);
726
727 /**
728  * Request an input frame from the filter at the other end of the link.
729  *
730  * @param link the input link
731  * @return     zero on success
732  */
733 int avfilter_request_frame(AVFilterLink *link);
734
735 /**
736  * Poll a frame from the filter chain.
737  *
738  * @param  link the input link
739  * @return the number of immediately available frames, a negative
740  * number in case of error
741  */
742 int avfilter_poll_frame(AVFilterLink *link);
743
744 /**
745  * Notifie the next filter of the start of a frame.
746  *
747  * @param link   the output link the frame will be sent over
748  * @param picref A reference to the frame about to be sent. The data for this
749  *               frame need only be valid once draw_slice() is called for that
750  *               portion. The receiving filter will free this reference when
751  *               it no longer needs it.
752  */
753 void avfilter_start_frame(AVFilterLink *link, AVFilterBufferRef *picref);
754
755 /**
756  * Notifie the next filter that the current frame has finished.
757  *
758  * @param link the output link the frame was sent over
759  */
760 void avfilter_end_frame(AVFilterLink *link);
761
762 /**
763  * Send a slice to the next filter.
764  *
765  * Slices have to be provided in sequential order, either in
766  * top-bottom or bottom-top order. If slices are provided in
767  * non-sequential order the behavior of the function is undefined.
768  *
769  * @param link the output link over which the frame is being sent
770  * @param y    offset in pixels from the top of the image for this slice
771  * @param h    height of this slice in pixels
772  * @param slice_dir the assumed direction for sending slices,
773  *             from the top slice to the bottom slice if the value is 1,
774  *             from the bottom slice to the top slice if the value is -1,
775  *             for other values the behavior of the function is undefined.
776  */
777 void avfilter_draw_slice(AVFilterLink *link, int y, int h, int slice_dir);
778
779 /**
780  * Send a buffer of audio samples to the next filter.
781  *
782  * @param link       the output link over which the audio samples are being sent
783  * @param samplesref a reference to the buffer of audio samples being sent. The
784  *                   receiving filter will free this reference when it no longer
785  *                   needs it or pass it on to the next filter.
786  */
787 void avfilter_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref);
788
789 /** Initialize the filter system. Register all builtin filters. */
790 void avfilter_register_all(void);
791
792 /** Uninitialize the filter system. Unregister all filters. */
793 void avfilter_uninit(void);
794
795 /**
796  * Register a filter. This is only needed if you plan to use
797  * avfilter_get_by_name later to lookup the AVFilter structure by name. A
798  * filter can still by instantiated with avfilter_open even if it is not
799  * registered.
800  *
801  * @param filter the filter to register
802  * @return 0 if the registration was succesfull, a negative value
803  * otherwise
804  */
805 int avfilter_register(AVFilter *filter);
806
807 /**
808  * Get a filter definition matching the given name.
809  *
810  * @param name the filter name to find
811  * @return     the filter definition, if any matching one is registered.
812  *             NULL if none found.
813  */
814 AVFilter *avfilter_get_by_name(const char *name);
815
816 /**
817  * If filter is NULL, returns a pointer to the first registered filter pointer,
818  * if filter is non-NULL, returns the next pointer after filter.
819  * If the returned pointer points to NULL, the last registered filter
820  * was already reached.
821  */
822 AVFilter **av_filter_next(AVFilter **filter);
823
824 /**
825  * Create a filter instance.
826  *
827  * @param filter_ctx put here a pointer to the created filter context
828  * on success, NULL on failure
829  * @param filter    the filter to create an instance of
830  * @param inst_name Name to give to the new instance. Can be NULL for none.
831  * @return >= 0 in case of success, a negative error code otherwise
832  */
833 int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name);
834
835 /**
836  * Initialize a filter.
837  *
838  * @param filter the filter to initialize
839  * @param args   A string of parameters to use when initializing the filter.
840  *               The format and meaning of this string varies by filter.
841  * @param opaque Any extra non-string data needed by the filter. The meaning
842  *               of this parameter varies by filter.
843  * @return       zero on success
844  */
845 int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque);
846
847 /**
848  * Free a filter context.
849  *
850  * @param filter the filter to free
851  */
852 void avfilter_free(AVFilterContext *filter);
853
854 /**
855  * Insert a filter in the middle of an existing link.
856  *
857  * @param link the link into which the filter should be inserted
858  * @param filt the filter to be inserted
859  * @param filt_srcpad_idx the input pad on the filter to connect
860  * @param filt_dstpad_idx the output pad on the filter to connect
861  * @return     zero on success
862  */
863 int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
864                            unsigned filt_srcpad_idx, unsigned filt_dstpad_idx);
865
866 /**
867  * Insert a new pad.
868  *
869  * @param idx Insertion point. Pad is inserted at the end if this point
870  *            is beyond the end of the list of pads.
871  * @param count Pointer to the number of pads in the list
872  * @param padidx_off Offset within an AVFilterLink structure to the element
873  *                   to increment when inserting a new pad causes link
874  *                   numbering to change
875  * @param pads Pointer to the pointer to the beginning of the list of pads
876  * @param links Pointer to the pointer to the beginning of the list of links
877  * @param newpad The new pad to add. A copy is made when adding.
878  */
879 void avfilter_insert_pad(unsigned idx, unsigned *count, size_t padidx_off,
880                          AVFilterPad **pads, AVFilterLink ***links,
881                          AVFilterPad *newpad);
882
883 /** Insert a new input pad for the filter. */
884 static inline void avfilter_insert_inpad(AVFilterContext *f, unsigned index,
885                                          AVFilterPad *p)
886 {
887     avfilter_insert_pad(index, &f->input_count, offsetof(AVFilterLink, dstpad),
888                         &f->input_pads, &f->inputs, p);
889 }
890
891 /** Insert a new output pad for the filter. */
892 static inline void avfilter_insert_outpad(AVFilterContext *f, unsigned index,
893                                           AVFilterPad *p)
894 {
895     avfilter_insert_pad(index, &f->output_count, offsetof(AVFilterLink, srcpad),
896                         &f->output_pads, &f->outputs, p);
897 }
898
899 #endif /* AVFILTER_AVFILTER_H */