]> git.sesse.net Git - casparcg/blob - ffmpeg 0.7/include/libavfilter/avfilter.h
Added ffmpeg 0.7 RC
[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  5
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
102     int size;                   ///< audio buffer size
103     uint32_t sample_rate;       ///< audio buffer sample rate
104     int planar;                 ///< audio buffer - planar or packed
105 } AVFilterBufferRefAudioProps;
106
107 /**
108  * Video specific properties in a reference to an AVFilterBuffer. Since
109  * AVFilterBufferRef is common to different media formats, video specific
110  * per reference properties must be separated out.
111  */
112 typedef struct AVFilterBufferRefVideoProps {
113     int w;                      ///< image width
114     int h;                      ///< image height
115     AVRational sample_aspect_ratio; ///< sample aspect ratio
116     int interlaced;             ///< is frame interlaced
117     int top_field_first;        ///< field order
118     enum AVPictureType pict_type; ///< picture type of the frame
119     int key_frame;              ///< 1 -> keyframe, 0-> not
120 } AVFilterBufferRefVideoProps;
121
122 /**
123  * A reference to an AVFilterBuffer. Since filters can manipulate the origin of
124  * a buffer to, for example, crop image without any memcpy, the buffer origin
125  * and dimensions are per-reference properties. Linesize is also useful for
126  * image flipping, frame to field filters, etc, and so is also per-reference.
127  *
128  * TODO: add anything necessary for frame reordering
129  */
130 typedef struct AVFilterBufferRef {
131     AVFilterBuffer *buf;        ///< the buffer that this is a reference to
132     uint8_t *data[8];           ///< picture/audio data for each plane
133     int linesize[8];            ///< number of bytes per line
134     int format;                 ///< media format
135
136     /**
137      * presentation timestamp. The time unit may change during
138      * filtering, as it is specified in the link and the filter code
139      * may need to rescale the PTS accordingly.
140      */
141     int64_t pts;
142     int64_t pos;                ///< byte position in stream, -1 if unknown
143
144     int perms;                  ///< permissions, see the AV_PERM_* flags
145
146     enum AVMediaType type;      ///< media type of buffer data
147     AVFilterBufferRefVideoProps *video; ///< video buffer specific properties
148     AVFilterBufferRefAudioProps *audio; ///< audio buffer specific properties
149 } AVFilterBufferRef;
150
151 /**
152  * Copy properties of src to dst, without copying the actual data
153  */
154 static inline void avfilter_copy_buffer_ref_props(AVFilterBufferRef *dst, AVFilterBufferRef *src)
155 {
156     // copy common properties
157     dst->pts             = src->pts;
158     dst->pos             = src->pos;
159
160     switch (src->type) {
161     case AVMEDIA_TYPE_VIDEO: *dst->video = *src->video; break;
162     case AVMEDIA_TYPE_AUDIO: *dst->audio = *src->audio; break;
163     }
164 }
165
166 /**
167  * Add a new reference to a buffer.
168  *
169  * @param ref   an existing reference to the buffer
170  * @param pmask a bitmask containing the allowable permissions in the new
171  *              reference
172  * @return      a new reference to the buffer with the same properties as the
173  *              old, excluding any permissions denied by pmask
174  */
175 AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask);
176
177 /**
178  * Remove a reference to a buffer. If this is the last reference to the
179  * buffer, the buffer itself is also automatically freed.
180  *
181  * @param ref reference to the buffer, may be NULL
182  */
183 void avfilter_unref_buffer(AVFilterBufferRef *ref);
184
185 /**
186  * A list of supported formats for one end of a filter link. This is used
187  * during the format negotiation process to try to pick the best format to
188  * use to minimize the number of necessary conversions. Each filter gives a
189  * list of the formats supported by each input and output pad. The list
190  * given for each pad need not be distinct - they may be references to the
191  * same list of formats, as is often the case when a filter supports multiple
192  * formats, but will always output the same format as it is given in input.
193  *
194  * In this way, a list of possible input formats and a list of possible
195  * output formats are associated with each link. When a set of formats is
196  * negotiated over a link, the input and output lists are merged to form a
197  * new list containing only the common elements of each list. In the case
198  * that there were no common elements, a format conversion is necessary.
199  * Otherwise, the lists are merged, and all other links which reference
200  * either of the format lists involved in the merge are also affected.
201  *
202  * For example, consider the filter chain:
203  * filter (a) --> (b) filter (b) --> (c) filter
204  *
205  * where the letters in parenthesis indicate a list of formats supported on
206  * the input or output of the link. Suppose the lists are as follows:
207  * (a) = {A, B}
208  * (b) = {A, B, C}
209  * (c) = {B, C}
210  *
211  * First, the first link's lists are merged, yielding:
212  * filter (a) --> (a) filter (a) --> (c) filter
213  *
214  * Notice that format list (b) now refers to the same list as filter list (a).
215  * Next, the lists for the second link are merged, yielding:
216  * filter (a) --> (a) filter (a) --> (a) filter
217  *
218  * where (a) = {B}.
219  *
220  * Unfortunately, when the format lists at the two ends of a link are merged,
221  * we must ensure that all links which reference either pre-merge format list
222  * get updated as well. Therefore, we have the format list structure store a
223  * pointer to each of the pointers to itself.
224  */
225 typedef struct AVFilterFormats {
226     unsigned format_count;      ///< number of formats
227     int *formats;               ///< list of media formats
228
229     unsigned refcount;          ///< number of references to this list
230     struct AVFilterFormats ***refs; ///< references to this list
231 }  AVFilterFormats;
232
233 /**
234  * Create a list of supported formats. This is intended for use in
235  * AVFilter->query_formats().
236  *
237  * @param fmts list of media formats, terminated by -1
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 size,
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 size,
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  * Negotiate the media format, dimensions, etc of all inputs to a filter.
640  *
641  * @param filter the filter to negotiate the properties for its inputs
642  * @return       zero on successful negotiation
643  */
644 int avfilter_config_links(AVFilterContext *filter);
645
646 /**
647  * Request a picture buffer with a specific set of permissions.
648  *
649  * @param link  the output link to the filter from which the buffer will
650  *              be requested
651  * @param perms the required access permissions
652  * @param w     the minimum width of the buffer to allocate
653  * @param h     the minimum height of the buffer to allocate
654  * @return      A reference to the buffer. This must be unreferenced with
655  *              avfilter_unref_buffer when you are finished with it.
656  */
657 AVFilterBufferRef *avfilter_get_video_buffer(AVFilterLink *link, int perms,
658                                           int w, int h);
659
660 /**
661  * Create a buffer reference wrapped around an already allocated image
662  * buffer.
663  *
664  * @param data pointers to the planes of the image to reference
665  * @param linesize linesizes for the planes of the image to reference
666  * @param perms the required access permissions
667  * @param w the width of the image specified by the data and linesize arrays
668  * @param h the height of the image specified by the data and linesize arrays
669  * @param format the pixel format of the image specified by the data and linesize arrays
670  */
671 AVFilterBufferRef *
672 avfilter_get_video_buffer_ref_from_arrays(uint8_t *data[4], int linesize[4], int perms,
673                                           int w, int h, enum PixelFormat format);
674
675 /**
676  * Request an audio samples buffer with a specific set of permissions.
677  *
678  * @param link           the output link to the filter from which the buffer will
679  *                       be requested
680  * @param perms          the required access permissions
681  * @param sample_fmt     the format of each sample in the buffer to allocate
682  * @param size           the buffer size in bytes
683  * @param channel_layout the number and type of channels per sample in the buffer to allocate
684  * @param planar         audio data layout - planar or packed
685  * @return               A reference to the samples. This must be unreferenced with
686  *                       avfilter_unref_buffer when you are finished with it.
687  */
688 AVFilterBufferRef *avfilter_get_audio_buffer(AVFilterLink *link, int perms,
689                                              enum AVSampleFormat sample_fmt, int size,
690                                              int64_t channel_layout, int planar);
691
692 /**
693  * Request an input frame from the filter at the other end of the link.
694  *
695  * @param link the input link
696  * @return     zero on success
697  */
698 int avfilter_request_frame(AVFilterLink *link);
699
700 /**
701  * Poll a frame from the filter chain.
702  *
703  * @param  link the input link
704  * @return the number of immediately available frames, a negative
705  * number in case of error
706  */
707 int avfilter_poll_frame(AVFilterLink *link);
708
709 /**
710  * Notifie the next filter of the start of a frame.
711  *
712  * @param link   the output link the frame will be sent over
713  * @param picref A reference to the frame about to be sent. The data for this
714  *               frame need only be valid once draw_slice() is called for that
715  *               portion. The receiving filter will free this reference when
716  *               it no longer needs it.
717  */
718 void avfilter_start_frame(AVFilterLink *link, AVFilterBufferRef *picref);
719
720 /**
721  * Notifie the next filter that the current frame has finished.
722  *
723  * @param link the output link the frame was sent over
724  */
725 void avfilter_end_frame(AVFilterLink *link);
726
727 /**
728  * Send a slice to the next filter.
729  *
730  * Slices have to be provided in sequential order, either in
731  * top-bottom or bottom-top order. If slices are provided in
732  * non-sequential order the behavior of the function is undefined.
733  *
734  * @param link the output link over which the frame is being sent
735  * @param y    offset in pixels from the top of the image for this slice
736  * @param h    height of this slice in pixels
737  * @param slice_dir the assumed direction for sending slices,
738  *             from the top slice to the bottom slice if the value is 1,
739  *             from the bottom slice to the top slice if the value is -1,
740  *             for other values the behavior of the function is undefined.
741  */
742 void avfilter_draw_slice(AVFilterLink *link, int y, int h, int slice_dir);
743
744 /**
745  * Send a buffer of audio samples to the next filter.
746  *
747  * @param link       the output link over which the audio samples are being sent
748  * @param samplesref a reference to the buffer of audio samples being sent. The
749  *                   receiving filter will free this reference when it no longer
750  *                   needs it or pass it on to the next filter.
751  */
752 void avfilter_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref);
753
754 /** Initialize the filter system. Register all builtin filters. */
755 void avfilter_register_all(void);
756
757 /** Uninitialize the filter system. Unregister all filters. */
758 void avfilter_uninit(void);
759
760 /**
761  * Register a filter. This is only needed if you plan to use
762  * avfilter_get_by_name later to lookup the AVFilter structure by name. A
763  * filter can still by instantiated with avfilter_open even if it is not
764  * registered.
765  *
766  * @param filter the filter to register
767  * @return 0 if the registration was succesfull, a negative value
768  * otherwise
769  */
770 int avfilter_register(AVFilter *filter);
771
772 /**
773  * Get a filter definition matching the given name.
774  *
775  * @param name the filter name to find
776  * @return     the filter definition, if any matching one is registered.
777  *             NULL if none found.
778  */
779 AVFilter *avfilter_get_by_name(const char *name);
780
781 /**
782  * If filter is NULL, returns a pointer to the first registered filter pointer,
783  * if filter is non-NULL, returns the next pointer after filter.
784  * If the returned pointer points to NULL, the last registered filter
785  * was already reached.
786  */
787 AVFilter **av_filter_next(AVFilter **filter);
788
789 /**
790  * Create a filter instance.
791  *
792  * @param filter_ctx put here a pointer to the created filter context
793  * on success, NULL on failure
794  * @param filter    the filter to create an instance of
795  * @param inst_name Name to give to the new instance. Can be NULL for none.
796  * @return >= 0 in case of success, a negative error code otherwise
797  */
798 int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name);
799
800 /**
801  * Initialize a filter.
802  *
803  * @param filter the filter to initialize
804  * @param args   A string of parameters to use when initializing the filter.
805  *               The format and meaning of this string varies by filter.
806  * @param opaque Any extra non-string data needed by the filter. The meaning
807  *               of this parameter varies by filter.
808  * @return       zero on success
809  */
810 int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque);
811
812 /**
813  * Free a filter context.
814  *
815  * @param filter the filter to free
816  */
817 void avfilter_free(AVFilterContext *filter);
818
819 /**
820  * Insert a filter in the middle of an existing link.
821  *
822  * @param link the link into which the filter should be inserted
823  * @param filt the filter to be inserted
824  * @param filt_srcpad_idx the input pad on the filter to connect
825  * @param filt_dstpad_idx the output pad on the filter to connect
826  * @return     zero on success
827  */
828 int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
829                            unsigned filt_srcpad_idx, unsigned filt_dstpad_idx);
830
831 /**
832  * Insert a new pad.
833  *
834  * @param idx Insertion point. Pad is inserted at the end if this point
835  *            is beyond the end of the list of pads.
836  * @param count Pointer to the number of pads in the list
837  * @param padidx_off Offset within an AVFilterLink structure to the element
838  *                   to increment when inserting a new pad causes link
839  *                   numbering to change
840  * @param pads Pointer to the pointer to the beginning of the list of pads
841  * @param links Pointer to the pointer to the beginning of the list of links
842  * @param newpad The new pad to add. A copy is made when adding.
843  */
844 void avfilter_insert_pad(unsigned idx, unsigned *count, size_t padidx_off,
845                          AVFilterPad **pads, AVFilterLink ***links,
846                          AVFilterPad *newpad);
847
848 /** Insert a new input pad for the filter. */
849 static inline void avfilter_insert_inpad(AVFilterContext *f, unsigned index,
850                                          AVFilterPad *p)
851 {
852     avfilter_insert_pad(index, &f->input_count, offsetof(AVFilterLink, dstpad),
853                         &f->input_pads, &f->inputs, p);
854 }
855
856 /** Insert a new output pad for the filter. */
857 static inline void avfilter_insert_outpad(AVFilterContext *f, unsigned index,
858                                           AVFilterPad *p)
859 {
860     avfilter_insert_pad(index, &f->output_count, offsetof(AVFilterLink, srcpad),
861                         &f->output_pads, &f->outputs, p);
862 }
863
864 #endif  /* AVFILTER_AVFILTER_H */