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