]> git.sesse.net Git - casparcg/blob - ffmpeg 0.7/include/libavfilter/avfilter.h
2.0.2: INFO TEMPLATE works on both compressed and uncompressed templates.
[casparcg] / ffmpeg 0.7 / include / 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 15
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     int *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
242 /**
243  * Add fmt to the list of media formats contained in *avff.
244  * If *avff is NULL the function allocates the filter formats struct
245  * and puts its pointer in *avff.
246  *
247  * @return a non negative value in case of success, or a negative
248  * value corresponding to an AVERROR code in case of error
249  */
250 int avfilter_add_format(AVFilterFormats **avff, int fmt);
251
252 /**
253  * Return a list of all formats supported by FFmpeg for the given media type.
254  */
255 AVFilterFormats *avfilter_all_formats(enum AVMediaType type);
256
257 /**
258  * Return a format list which contains the intersection of the formats of
259  * a and b. Also, all the references of a, all the references of b, and
260  * a and b themselves will be deallocated.
261  *
262  * If a and b do not share any common formats, neither is modified, and NULL
263  * is returned.
264  */
265 AVFilterFormats *avfilter_merge_formats(AVFilterFormats *a, AVFilterFormats *b);
266
267 /**
268  * Add *ref as a new reference to formats.
269  * That is the pointers will point like in the ascii art below:
270  *   ________
271  *  |formats |<--------.
272  *  |  ____  |     ____|___________________
273  *  | |refs| |    |  __|_
274  *  | |* * | |    | |  | |  AVFilterLink
275  *  | |* *--------->|*ref|
276  *  | |____| |    | |____|
277  *  |________|    |________________________
278  */
279 void avfilter_formats_ref(AVFilterFormats *formats, AVFilterFormats **ref);
280
281 /**
282  * If *ref is non-NULL, remove *ref as a reference to the format list
283  * it currently points to, deallocates that list if this was the last
284  * reference, and sets *ref to NULL.
285  *
286  *         Before                                 After
287  *   ________                               ________         NULL
288  *  |formats |<--------.                   |formats |         ^
289  *  |  ____  |     ____|________________   |  ____  |     ____|________________
290  *  | |refs| |    |  __|_                  | |refs| |    |  __|_
291  *  | |* * | |    | |  | |  AVFilterLink   | |* * | |    | |  | |  AVFilterLink
292  *  | |* *--------->|*ref|                 | |*   | |    | |*ref|
293  *  | |____| |    | |____|                 | |____| |    | |____|
294  *  |________|    |_____________________   |________|    |_____________________
295  */
296 void avfilter_formats_unref(AVFilterFormats **ref);
297
298 /**
299  *
300  *         Before                                 After
301  *   ________                         ________
302  *  |formats |<---------.            |formats |<---------.
303  *  |  ____  |       ___|___         |  ____  |       ___|___
304  *  | |refs| |      |   |   |        | |refs| |      |   |   |   NULL
305  *  | |* *--------->|*oldref|        | |* *--------->|*newref|     ^
306  *  | |* * | |      |_______|        | |* * | |      |_______|  ___|___
307  *  | |____| |                       | |____| |                |   |   |
308  *  |________|                       |________|                |*oldref|
309  *                                                             |_______|
310  */
311 void avfilter_formats_changeref(AVFilterFormats **oldref,
312                                 AVFilterFormats **newref);
313
314 /**
315  * A filter pad used for either input or output.
316  */
317 struct AVFilterPad {
318     /**
319      * Pad name. The name is unique among inputs and among outputs, but an
320      * input may have the same name as an output. This may be NULL if this
321      * pad has no need to ever be referenced by name.
322      */
323     const char *name;
324
325     /**
326      * AVFilterPad type. Only video supported now, hopefully someone will
327      * add audio in the future.
328      */
329     enum AVMediaType type;
330
331     /**
332      * Minimum required permissions on incoming buffers. Any buffer with
333      * insufficient permissions will be automatically copied by the filter
334      * system to a new buffer which provides the needed access permissions.
335      *
336      * Input pads only.
337      */
338     int min_perms;
339
340     /**
341      * Permissions which are not accepted on incoming buffers. Any buffer
342      * which has any of these permissions set will be automatically copied
343      * by the filter system to a new buffer which does not have those
344      * permissions. This can be used to easily disallow buffers with
345      * AV_PERM_REUSE.
346      *
347      * Input pads only.
348      */
349     int rej_perms;
350
351     /**
352      * Callback called before passing the first slice of a new frame. If
353      * NULL, the filter layer will default to storing a reference to the
354      * picture inside the link structure.
355      *
356      * Input video pads only.
357      */
358     void (*start_frame)(AVFilterLink *link, AVFilterBufferRef *picref);
359
360     /**
361      * Callback function to get a video buffer. If NULL, the filter system will
362      * use avfilter_default_get_video_buffer().
363      *
364      * Input video pads only.
365      */
366     AVFilterBufferRef *(*get_video_buffer)(AVFilterLink *link, int perms, int w, int h);
367
368     /**
369      * Callback function to get an audio buffer. If NULL, the filter system will
370      * use avfilter_default_get_audio_buffer().
371      *
372      * Input audio pads only.
373      */
374     AVFilterBufferRef *(*get_audio_buffer)(AVFilterLink *link, int perms,
375                                            enum AVSampleFormat sample_fmt, int nb_samples,
376                                            int64_t channel_layout, int planar);
377
378     /**
379      * Callback called after the slices of a frame are completely sent. If
380      * NULL, the filter layer will default to releasing the reference stored
381      * in the link structure during start_frame().
382      *
383      * Input video pads only.
384      */
385     void (*end_frame)(AVFilterLink *link);
386
387     /**
388      * Slice drawing callback. This is where a filter receives video data
389      * and should do its processing.
390      *
391      * Input video pads only.
392      */
393     void (*draw_slice)(AVFilterLink *link, int y, int height, int slice_dir);
394
395     /**
396      * Samples filtering callback. This is where a filter receives audio data
397      * and should do its processing.
398      *
399      * Input audio pads only.
400      */
401     void (*filter_samples)(AVFilterLink *link, AVFilterBufferRef *samplesref);
402
403     /**
404      * Frame poll callback. This returns the number of immediately available
405      * samples. It should return a positive value if the next request_frame()
406      * is guaranteed to return one frame (with no delay).
407      *
408      * Defaults to just calling the source poll_frame() method.
409      *
410      * Output video pads only.
411      */
412     int (*poll_frame)(AVFilterLink *link);
413
414     /**
415      * Frame request callback. A call to this should result in at least one
416      * frame being output over the given link. This should return zero on
417      * success, and another value on error.
418      *
419      * Output video pads only.
420      */
421     int (*request_frame)(AVFilterLink *link);
422
423     /**
424      * Link configuration callback.
425      *
426      * For output pads, this should set the link properties such as
427      * width/height. This should NOT set the format property - that is
428      * negotiated between filters by the filter system using the
429      * query_formats() callback before this function is called.
430      *
431      * For input pads, this should check the properties of the link, and update
432      * the filter's internal state as necessary.
433      *
434      * For both input and output filters, this should return zero on success,
435      * and another value on error.
436      */
437     int (*config_props)(AVFilterLink *link);
438 };
439
440 /** default handler for start_frame() for video inputs */
441 void avfilter_default_start_frame(AVFilterLink *link, AVFilterBufferRef *picref);
442
443 /** default handler for draw_slice() for video inputs */
444 void avfilter_default_draw_slice(AVFilterLink *link, int y, int h, int slice_dir);
445
446 /** default handler for end_frame() for video inputs */
447 void avfilter_default_end_frame(AVFilterLink *link);
448
449 /** default handler for filter_samples() for audio inputs */
450 void avfilter_default_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref);
451
452 /** default handler for config_props() for audio/video outputs */
453 int avfilter_default_config_output_link(AVFilterLink *link);
454
455 /** default handler for config_props() for audio/video inputs */
456 int avfilter_default_config_input_link (AVFilterLink *link);
457
458 /** default handler for get_video_buffer() for video inputs */
459 AVFilterBufferRef *avfilter_default_get_video_buffer(AVFilterLink *link,
460                                                      int perms, int w, int h);
461
462 /** default handler for get_audio_buffer() for audio inputs */
463 AVFilterBufferRef *avfilter_default_get_audio_buffer(AVFilterLink *link, int perms,
464                                                      enum AVSampleFormat sample_fmt, int nb_samples,
465                                                      int64_t channel_layout, int planar);
466
467 /**
468  * A helper for query_formats() which sets all links to the same list of
469  * formats. If there are no links hooked to this filter, the list of formats is
470  * freed.
471  */
472 void avfilter_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats);
473
474 /** Default handler for query_formats() */
475 int avfilter_default_query_formats(AVFilterContext *ctx);
476
477 /** start_frame() handler for filters which simply pass video along */
478 void avfilter_null_start_frame(AVFilterLink *link, AVFilterBufferRef *picref);
479
480 /** draw_slice() handler for filters which simply pass video along */
481 void avfilter_null_draw_slice(AVFilterLink *link, int y, int h, int slice_dir);
482
483 /** end_frame() handler for filters which simply pass video along */
484 void avfilter_null_end_frame(AVFilterLink *link);
485
486 /** filter_samples() handler for filters which simply pass audio along */
487 void avfilter_null_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref);
488
489 /** get_video_buffer() handler for filters which simply pass video along */
490 AVFilterBufferRef *avfilter_null_get_video_buffer(AVFilterLink *link,
491                                                   int perms, int w, int h);
492
493 /** get_audio_buffer() handler for filters which simply pass audio along */
494 AVFilterBufferRef *avfilter_null_get_audio_buffer(AVFilterLink *link, int perms,
495                                                   enum AVSampleFormat sample_fmt, int size,
496                                                   int64_t channel_layout, int planar);
497
498 /**
499  * Filter definition. This defines the pads a filter contains, and all the
500  * callback functions used to interact with the filter.
501  */
502 typedef struct AVFilter {
503     const char *name;         ///< filter name
504
505     int priv_size;      ///< size of private data to allocate for the filter
506
507     /**
508      * Filter initialization function. Args contains the user-supplied
509      * parameters. FIXME: maybe an AVOption-based system would be better?
510      * opaque is data provided by the code requesting creation of the filter,
511      * and is used to pass data to the filter.
512      */
513     int (*init)(AVFilterContext *ctx, const char *args, void *opaque);
514
515     /**
516      * Filter uninitialization function. Should deallocate any memory held
517      * by the filter, release any buffer references, etc. This does not need
518      * to deallocate the AVFilterContext->priv memory itself.
519      */
520     void (*uninit)(AVFilterContext *ctx);
521
522     /**
523      * Queries formats supported by the filter and its pads, and sets the
524      * in_formats for links connected to its output pads, and out_formats
525      * for links connected to its input pads.
526      *
527      * @return zero on success, a negative value corresponding to an
528      * AVERROR code otherwise
529      */
530     int (*query_formats)(AVFilterContext *);
531
532     const AVFilterPad *inputs;  ///< NULL terminated list of inputs. NULL if none
533     const AVFilterPad *outputs; ///< NULL terminated list of outputs. NULL if none
534
535     /**
536      * A description for the filter. You should use the
537      * NULL_IF_CONFIG_SMALL() macro to define it.
538      */
539     const char *description;
540 } AVFilter;
541
542 /** An instance of a filter */
543 struct AVFilterContext {
544     const AVClass *av_class;              ///< needed for av_log()
545
546     AVFilter *filter;               ///< the AVFilter of which this is an instance
547
548     char *name;                     ///< name of this filter instance
549
550     unsigned input_count;           ///< number of input pads
551     AVFilterPad   *input_pads;      ///< array of input pads
552     AVFilterLink **inputs;          ///< array of pointers to input links
553
554     unsigned output_count;          ///< number of output pads
555     AVFilterPad   *output_pads;     ///< array of output pads
556     AVFilterLink **outputs;         ///< array of pointers to output links
557
558     void *priv;                     ///< private data for use by the filter
559 };
560
561 /**
562  * A link between two filters. This contains pointers to the source and
563  * destination filters between which this link exists, and the indexes of
564  * the pads involved. In addition, this link also contains the parameters
565  * which have been negotiated and agreed upon between the filter, such as
566  * image dimensions, format, etc.
567  */
568 struct AVFilterLink {
569     AVFilterContext *src;       ///< source filter
570     AVFilterPad *srcpad;        ///< output pad on the source filter
571
572     AVFilterContext *dst;       ///< dest filter
573     AVFilterPad *dstpad;        ///< input pad on the dest filter
574
575     /** stage of the initialization of the link properties (dimensions, etc) */
576     enum {
577         AVLINK_UNINIT = 0,      ///< not started
578         AVLINK_STARTINIT,       ///< started, but incomplete
579         AVLINK_INIT             ///< complete
580     } init_state;
581
582     enum AVMediaType type;      ///< filter media type
583
584     /* These parameters apply only to video */
585     int w;                      ///< agreed upon image width
586     int h;                      ///< agreed upon image height
587     AVRational sample_aspect_ratio; ///< agreed upon sample aspect ratio
588     /* These two parameters apply only to audio */
589     int64_t channel_layout;     ///< channel layout of current buffer (see libavutil/audioconvert.h)
590     int64_t sample_rate;        ///< samples per second
591
592     int format;                 ///< agreed upon media format
593
594     /**
595      * Lists of formats supported by the input and output filters respectively.
596      * These lists are used for negotiating the format to actually be used,
597      * which will be loaded into the format member, above, when chosen.
598      */
599     AVFilterFormats *in_formats;
600     AVFilterFormats *out_formats;
601
602     /**
603      * The buffer reference currently being sent across the link by the source
604      * filter. This is used internally by the filter system to allow
605      * automatic copying of buffers which do not have sufficient permissions
606      * for the destination. This should not be accessed directly by the
607      * filters.
608      */
609     AVFilterBufferRef *src_buf;
610
611     AVFilterBufferRef *cur_buf;
612     AVFilterBufferRef *out_buf;
613
614     /**
615      * Define the time base used by the PTS of the frames/samples
616      * which will pass through this link.
617      * During the configuration stage, each filter is supposed to
618      * change only the output timebase, while the timebase of the
619      * input link is assumed to be an unchangeable property.
620      */
621     AVRational time_base;
622
623     struct AVFilterPool *pool;
624 };
625
626 /**
627  * Link two filters together.
628  *
629  * @param src    the source filter
630  * @param srcpad index of the output pad on the source filter
631  * @param dst    the destination filter
632  * @param dstpad index of the input pad on the destination filter
633  * @return       zero on success
634  */
635 int avfilter_link(AVFilterContext *src, unsigned srcpad,
636                   AVFilterContext *dst, unsigned dstpad);
637
638 /**
639  * Free the link in *link, and set its pointer to NULL.
640  */
641 void avfilter_link_free(AVFilterLink **link);
642
643 /**
644  * Negotiate the media format, dimensions, etc of all inputs to a filter.
645  *
646  * @param filter the filter to negotiate the properties for its inputs
647  * @return       zero on successful negotiation
648  */
649 int avfilter_config_links(AVFilterContext *filter);
650
651 /**
652  * Request a picture buffer with a specific set of permissions.
653  *
654  * @param link  the output link to the filter from which the buffer will
655  *              be requested
656  * @param perms the required access permissions
657  * @param w     the minimum width of the buffer to allocate
658  * @param h     the minimum height of the buffer to allocate
659  * @return      A reference to the buffer. This must be unreferenced with
660  *              avfilter_unref_buffer when you are finished with it.
661  */
662 AVFilterBufferRef *avfilter_get_video_buffer(AVFilterLink *link, int perms,
663                                           int w, int h);
664
665 /**
666  * Create a buffer reference wrapped around an already allocated image
667  * buffer.
668  *
669  * @param data pointers to the planes of the image to reference
670  * @param linesize linesizes for the planes of the image to reference
671  * @param perms the required access permissions
672  * @param w the width of the image specified by the data and linesize arrays
673  * @param h the height of the image specified by the data and linesize arrays
674  * @param format the pixel format of the image specified by the data and linesize arrays
675  */
676 AVFilterBufferRef *
677 avfilter_get_video_buffer_ref_from_arrays(uint8_t * const data[4], const int linesize[4], int perms,
678                                           int w, int h, enum PixelFormat format);
679
680 /**
681  * Request an audio samples buffer with a specific set of permissions.
682  *
683  * @param link           the output link to the filter from which the buffer will
684  *                       be requested
685  * @param perms          the required access permissions
686  * @param sample_fmt     the format of each sample in the buffer to allocate
687  * @param nb_samples     the number of samples per channel
688  * @param channel_layout the number and type of channels per sample in the buffer to allocate
689  * @param planar         audio data layout - planar or packed
690  * @return               A reference to the samples. This must be unreferenced with
691  *                       avfilter_unref_buffer when you are finished with it.
692  */
693 AVFilterBufferRef *avfilter_get_audio_buffer(AVFilterLink *link, int perms,
694                                              enum AVSampleFormat sample_fmt, int nb_samples,
695                                              int64_t channel_layout, int planar);
696
697 /**
698  * Create an audio buffer reference wrapped around an already
699  * allocated samples buffer.
700  *
701  * @param data           pointers to the samples plane buffers
702  * @param linesize       linesize for the samples plane buffers
703  * @param perms          the required access permissions
704  * @param nb_samples     number of samples per channel
705  * @param sample_fmt     the format of each sample in the buffer to allocate
706  * @param channel_layout the channel layout of the buffer
707  * @param planar         audio data layout - planar or packed
708  */
709 AVFilterBufferRef *
710 avfilter_get_audio_buffer_ref_from_arrays(uint8_t *data[8], int linesize[8], int perms,
711                                           int nb_samples, enum AVSampleFormat sample_fmt,
712                                           int64_t channel_layout, int planar);
713
714 /**
715  * Request an input frame from the filter at the other end of the link.
716  *
717  * @param link the input link
718  * @return     zero on success
719  */
720 int avfilter_request_frame(AVFilterLink *link);
721
722 /**
723  * Poll a frame from the filter chain.
724  *
725  * @param  link the input link
726  * @return the number of immediately available frames, a negative
727  * number in case of error
728  */
729 int avfilter_poll_frame(AVFilterLink *link);
730
731 /**
732  * Notifie the next filter of the start of a frame.
733  *
734  * @param link   the output link the frame will be sent over
735  * @param picref A reference to the frame about to be sent. The data for this
736  *               frame need only be valid once draw_slice() is called for that
737  *               portion. The receiving filter will free this reference when
738  *               it no longer needs it.
739  */
740 void avfilter_start_frame(AVFilterLink *link, AVFilterBufferRef *picref);
741
742 /**
743  * Notifie the next filter that the current frame has finished.
744  *
745  * @param link the output link the frame was sent over
746  */
747 void avfilter_end_frame(AVFilterLink *link);
748
749 /**
750  * Send a slice to the next filter.
751  *
752  * Slices have to be provided in sequential order, either in
753  * top-bottom or bottom-top order. If slices are provided in
754  * non-sequential order the behavior of the function is undefined.
755  *
756  * @param link the output link over which the frame is being sent
757  * @param y    offset in pixels from the top of the image for this slice
758  * @param h    height of this slice in pixels
759  * @param slice_dir the assumed direction for sending slices,
760  *             from the top slice to the bottom slice if the value is 1,
761  *             from the bottom slice to the top slice if the value is -1,
762  *             for other values the behavior of the function is undefined.
763  */
764 void avfilter_draw_slice(AVFilterLink *link, int y, int h, int slice_dir);
765
766 /**
767  * Send a buffer of audio samples to the next filter.
768  *
769  * @param link       the output link over which the audio samples are being sent
770  * @param samplesref a reference to the buffer of audio samples being sent. The
771  *                   receiving filter will free this reference when it no longer
772  *                   needs it or pass it on to the next filter.
773  */
774 void avfilter_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref);
775
776 /** Initialize the filter system. Register all builtin filters. */
777 void avfilter_register_all(void);
778
779 /** Uninitialize the filter system. Unregister all filters. */
780 void avfilter_uninit(void);
781
782 /**
783  * Register a filter. This is only needed if you plan to use
784  * avfilter_get_by_name later to lookup the AVFilter structure by name. A
785  * filter can still by instantiated with avfilter_open even if it is not
786  * registered.
787  *
788  * @param filter the filter to register
789  * @return 0 if the registration was succesfull, a negative value
790  * otherwise
791  */
792 int avfilter_register(AVFilter *filter);
793
794 /**
795  * Get a filter definition matching the given name.
796  *
797  * @param name the filter name to find
798  * @return     the filter definition, if any matching one is registered.
799  *             NULL if none found.
800  */
801 AVFilter *avfilter_get_by_name(const char *name);
802
803 /**
804  * If filter is NULL, returns a pointer to the first registered filter pointer,
805  * if filter is non-NULL, returns the next pointer after filter.
806  * If the returned pointer points to NULL, the last registered filter
807  * was already reached.
808  */
809 AVFilter **av_filter_next(AVFilter **filter);
810
811 /**
812  * Create a filter instance.
813  *
814  * @param filter_ctx put here a pointer to the created filter context
815  * on success, NULL on failure
816  * @param filter    the filter to create an instance of
817  * @param inst_name Name to give to the new instance. Can be NULL for none.
818  * @return >= 0 in case of success, a negative error code otherwise
819  */
820 int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name);
821
822 /**
823  * Initialize a filter.
824  *
825  * @param filter the filter to initialize
826  * @param args   A string of parameters to use when initializing the filter.
827  *               The format and meaning of this string varies by filter.
828  * @param opaque Any extra non-string data needed by the filter. The meaning
829  *               of this parameter varies by filter.
830  * @return       zero on success
831  */
832 int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque);
833
834 /**
835  * Free a filter context.
836  *
837  * @param filter the filter to free
838  */
839 void avfilter_free(AVFilterContext *filter);
840
841 /**
842  * Insert a filter in the middle of an existing link.
843  *
844  * @param link the link into which the filter should be inserted
845  * @param filt the filter to be inserted
846  * @param filt_srcpad_idx the input pad on the filter to connect
847  * @param filt_dstpad_idx the output pad on the filter to connect
848  * @return     zero on success
849  */
850 int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
851                            unsigned filt_srcpad_idx, unsigned filt_dstpad_idx);
852
853 /**
854  * Insert a new pad.
855  *
856  * @param idx Insertion point. Pad is inserted at the end if this point
857  *            is beyond the end of the list of pads.
858  * @param count Pointer to the number of pads in the list
859  * @param padidx_off Offset within an AVFilterLink structure to the element
860  *                   to increment when inserting a new pad causes link
861  *                   numbering to change
862  * @param pads Pointer to the pointer to the beginning of the list of pads
863  * @param links Pointer to the pointer to the beginning of the list of links
864  * @param newpad The new pad to add. A copy is made when adding.
865  */
866 void avfilter_insert_pad(unsigned idx, unsigned *count, size_t padidx_off,
867                          AVFilterPad **pads, AVFilterLink ***links,
868                          AVFilterPad *newpad);
869
870 /** Insert a new input pad for the filter. */
871 static inline void avfilter_insert_inpad(AVFilterContext *f, unsigned index,
872                                          AVFilterPad *p)
873 {
874     avfilter_insert_pad(index, &f->input_count, offsetof(AVFilterLink, dstpad),
875                         &f->input_pads, &f->inputs, p);
876 }
877
878 /** Insert a new output pad for the filter. */
879 static inline void avfilter_insert_outpad(AVFilterContext *f, unsigned index,
880                                           AVFilterPad *p)
881 {
882     avfilter_insert_pad(index, &f->output_count, offsetof(AVFilterLink, srcpad),
883                         &f->output_pads, &f->outputs, p);
884 }
885
886 #endif /* AVFILTER_AVFILTER_H */