]> git.sesse.net Git - ffmpeg/blob - libavfilter/avfilter.h
Add some more missing includes after removing the implicit common.h
[ffmpeg] / libavfilter / avfilter.h
1 /*
2  * filter layer
3  * Copyright (c) 2007 Bobby Bingham
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; 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 #include "libavcodec/avcodec.h"
31
32 #include <stddef.h>
33
34 #include "libavfilter/version.h"
35
36 /**
37  * Return the LIBAVFILTER_VERSION_INT constant.
38  */
39 unsigned avfilter_version(void);
40
41 /**
42  * Return the libavfilter build-time configuration.
43  */
44 const char *avfilter_configuration(void);
45
46 /**
47  * Return the libavfilter license.
48  */
49 const char *avfilter_license(void);
50
51
52 typedef struct AVFilterContext AVFilterContext;
53 typedef struct AVFilterLink    AVFilterLink;
54 typedef struct AVFilterPad     AVFilterPad;
55 typedef struct AVFilterFormats AVFilterFormats;
56
57 /**
58  * A reference-counted buffer data type used by the filter system. Filters
59  * should not store pointers to this structure directly, but instead use the
60  * AVFilterBufferRef structure below.
61  */
62 typedef struct AVFilterBuffer {
63     uint8_t *data[8];           ///< buffer data for each plane/channel
64
65     /**
66      * pointers to the data planes/channels.
67      *
68      * For video, this should simply point to data[].
69      *
70      * For planar audio, each channel has a separate data pointer, and
71      * linesize[0] contains the size of each channel buffer.
72      * For packed audio, there is just one data pointer, and linesize[0]
73      * contains the total size of the buffer for all channels.
74      *
75      * Note: Both data and extended_data will always be set, but for planar
76      * audio with more channels that can fit in data, extended_data must be used
77      * in order to access all channels.
78      */
79     uint8_t **extended_data;
80     int linesize[8];            ///< number of bytes per line
81
82     /** private data to be used by a custom free function */
83     void *priv;
84     /**
85      * A pointer to the function to deallocate this buffer if the default
86      * function is not sufficient. This could, for example, add the memory
87      * back into a memory pool to be reused later without the overhead of
88      * reallocating it from scratch.
89      */
90     void (*free)(struct AVFilterBuffer *buf);
91
92     int format;                 ///< media format
93     int w, h;                   ///< width and height of the allocated buffer
94     unsigned refcount;          ///< number of references to this 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     uint64_t channel_layout;    ///< channel layout of audio buffer
111     int nb_samples;             ///< number of audio samples
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 pixel_aspect;    ///< pixel 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     /**
143      * pointers to the data planes/channels.
144      *
145      * For video, this should simply point to data[].
146      *
147      * For planar audio, each channel has a separate data pointer, and
148      * linesize[0] contains the size of each channel buffer.
149      * For packed audio, there is just one data pointer, and linesize[0]
150      * contains the total size of the buffer for all channels.
151      *
152      * Note: Both data and extended_data will always be set, but for planar
153      * audio with more channels that can fit in data, extended_data must be used
154      * in order to access all channels.
155      */
156     uint8_t **extended_data;
157     int linesize[8];            ///< number of bytes per line
158
159     AVFilterBufferRefVideoProps *video; ///< video buffer specific properties
160     AVFilterBufferRefAudioProps *audio; ///< audio buffer specific properties
161
162     /**
163      * presentation timestamp. The time unit may change during
164      * filtering, as it is specified in the link and the filter code
165      * may need to rescale the PTS accordingly.
166      */
167     int64_t pts;
168     int64_t pos;                ///< byte position in stream, -1 if unknown
169
170     int format;                 ///< media format
171
172     int perms;                  ///< permissions, see the AV_PERM_* flags
173
174     enum AVMediaType type;      ///< media type of buffer data
175 } AVFilterBufferRef;
176
177 /**
178  * Copy properties of src to dst, without copying the actual data
179  */
180 void avfilter_copy_buffer_ref_props(AVFilterBufferRef *dst, AVFilterBufferRef *src);
181
182 /**
183  * Add a new reference to a buffer.
184  *
185  * @param ref   an existing reference to the buffer
186  * @param pmask a bitmask containing the allowable permissions in the new
187  *              reference
188  * @return      a new reference to the buffer with the same properties as the
189  *              old, excluding any permissions denied by pmask
190  */
191 AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask);
192
193 /**
194  * Remove a reference to a buffer. If this is the last reference to the
195  * buffer, the buffer itself is also automatically freed.
196  *
197  * @param ref reference to the buffer, may be NULL
198  *
199  * @note it is recommended to use avfilter_unref_bufferp() instead of this
200  * function
201  */
202 void avfilter_unref_buffer(AVFilterBufferRef *ref);
203
204 /**
205  * Remove a reference to a buffer and set the pointer to NULL.
206  * If this is the last reference to the buffer, the buffer itself
207  * is also automatically freed.
208  *
209  * @param ref pointer to the buffer reference
210  */
211 void avfilter_unref_bufferp(AVFilterBufferRef **ref);
212
213 #if FF_API_AVFILTERPAD_PUBLIC
214 /**
215  * A filter pad used for either input or output.
216  *
217  * @warning this struct will be removed from public API.
218  * users should call avfilter_pad_get_name() and avfilter_pad_get_type()
219  * to access the name and type fields; there should be no need to access
220  * any other fields from outside of libavfilter.
221  */
222 struct AVFilterPad {
223     /**
224      * Pad name. The name is unique among inputs and among outputs, but an
225      * input may have the same name as an output. This may be NULL if this
226      * pad has no need to ever be referenced by name.
227      */
228     const char *name;
229
230     /**
231      * AVFilterPad type.
232      */
233     enum AVMediaType type;
234
235     /**
236      * Minimum required permissions on incoming buffers. Any buffer with
237      * insufficient permissions will be automatically copied by the filter
238      * system to a new buffer which provides the needed access permissions.
239      *
240      * Input pads only.
241      */
242     int min_perms;
243
244     /**
245      * Permissions which are not accepted on incoming buffers. Any buffer
246      * which has any of these permissions set will be automatically copied
247      * by the filter system to a new buffer which does not have those
248      * permissions. This can be used to easily disallow buffers with
249      * AV_PERM_REUSE.
250      *
251      * Input pads only.
252      */
253     int rej_perms;
254
255     /**
256      * Callback called before passing the first slice of a new frame. If
257      * NULL, the filter layer will default to storing a reference to the
258      * picture inside the link structure.
259      *
260      * Input video pads only.
261      *
262      * @return >= 0 on success, a negative AVERROR on error. picref will be
263      * unreferenced by the caller in case of error.
264      */
265     int (*start_frame)(AVFilterLink *link, AVFilterBufferRef *picref);
266
267     /**
268      * Callback function to get a video buffer. If NULL, the filter system will
269      * use avfilter_default_get_video_buffer().
270      *
271      * Input video pads only.
272      */
273     AVFilterBufferRef *(*get_video_buffer)(AVFilterLink *link, int perms, int w, int h);
274
275     /**
276      * Callback function to get an audio buffer. If NULL, the filter system will
277      * use avfilter_default_get_audio_buffer().
278      *
279      * Input audio pads only.
280      */
281     AVFilterBufferRef *(*get_audio_buffer)(AVFilterLink *link, int perms,
282                                            int nb_samples);
283
284     /**
285      * Callback called after the slices of a frame are completely sent. If
286      * NULL, the filter layer will default to releasing the reference stored
287      * in the link structure during start_frame().
288      *
289      * Input video pads only.
290      *
291      * @return >= 0 on success, a negative AVERROR on error.
292      */
293     int (*end_frame)(AVFilterLink *link);
294
295     /**
296      * Slice drawing callback. This is where a filter receives video data
297      * and should do its processing.
298      *
299      * Input video pads only.
300      *
301      * @return >= 0 on success, a negative AVERROR on error.
302      */
303     int (*draw_slice)(AVFilterLink *link, int y, int height, int slice_dir);
304
305     /**
306      * Samples filtering callback. This is where a filter receives audio data
307      * and should do its processing.
308      *
309      * Input audio pads only.
310      *
311      * @return >= 0 on success, a negative AVERROR on error. This function
312      * must ensure that samplesref is properly unreferenced on error if it
313      * hasn't been passed on to another filter.
314      */
315     int (*filter_samples)(AVFilterLink *link, AVFilterBufferRef *samplesref);
316
317     /**
318      * Frame poll callback. This returns the number of immediately available
319      * samples. It should return a positive value if the next request_frame()
320      * is guaranteed to return one frame (with no delay).
321      *
322      * Defaults to just calling the source poll_frame() method.
323      *
324      * Output pads only.
325      */
326     int (*poll_frame)(AVFilterLink *link);
327
328     /**
329      * Frame request callback. A call to this should result in at least one
330      * frame being output over the given link. This should return zero on
331      * success, and another value on error.
332      *
333      * Output pads only.
334      */
335     int (*request_frame)(AVFilterLink *link);
336
337     /**
338      * Link configuration callback.
339      *
340      * For output pads, this should set the link properties such as
341      * width/height. This should NOT set the format property - that is
342      * negotiated between filters by the filter system using the
343      * query_formats() callback before this function is called.
344      *
345      * For input pads, this should check the properties of the link, and update
346      * the filter's internal state as necessary.
347      *
348      * For both input and output filters, this should return zero on success,
349      * and another value on error.
350      */
351     int (*config_props)(AVFilterLink *link);
352
353     /**
354      * The filter expects a fifo to be inserted on its input link,
355      * typically because it has a delay.
356      *
357      * input pads only.
358      */
359     int needs_fifo;
360 };
361 #endif
362
363 /**
364  * Get the name of an AVFilterPad.
365  *
366  * @param pads an array of AVFilterPads
367  * @param pad_idx index of the pad in the array it; is the caller's
368  *                responsibility to ensure the index is valid
369  *
370  * @return name of the pad_idx'th pad in pads
371  */
372 const char *avfilter_pad_get_name(AVFilterPad *pads, int pad_idx);
373
374 /**
375  * Get the type of an AVFilterPad.
376  *
377  * @param pads an array of AVFilterPads
378  * @param pad_idx index of the pad in the array; it is the caller's
379  *                responsibility to ensure the index is valid
380  *
381  * @return type of the pad_idx'th pad in pads
382  */
383 enum AVMediaType avfilter_pad_get_type(AVFilterPad *pads, int pad_idx);
384
385 /**
386  * Filter definition. This defines the pads a filter contains, and all the
387  * callback functions used to interact with the filter.
388  */
389 typedef struct AVFilter {
390     const char *name;         ///< filter name
391
392     /**
393      * A description for the filter. You should use the
394      * NULL_IF_CONFIG_SMALL() macro to define it.
395      */
396     const char *description;
397
398     const AVFilterPad *inputs;  ///< NULL terminated list of inputs. NULL if none
399     const AVFilterPad *outputs; ///< NULL terminated list of outputs. NULL if none
400
401     /*****************************************************************
402      * All fields below this line are not part of the public API. They
403      * may not be used outside of libavfilter and can be changed and
404      * removed at will.
405      * New public fields should be added right above.
406      *****************************************************************
407      */
408
409     /**
410      * Filter initialization function. Args contains the user-supplied
411      * parameters. FIXME: maybe an AVOption-based system would be better?
412      */
413     int (*init)(AVFilterContext *ctx, const char *args);
414
415     /**
416      * Filter uninitialization function. Should deallocate any memory held
417      * by the filter, release any buffer references, etc. This does not need
418      * to deallocate the AVFilterContext->priv memory itself.
419      */
420     void (*uninit)(AVFilterContext *ctx);
421
422     /**
423      * Queries formats supported by the filter and its pads, and sets the
424      * in_formats for links connected to its output pads, and out_formats
425      * for links connected to its input pads.
426      *
427      * @return zero on success, a negative value corresponding to an
428      * AVERROR code otherwise
429      */
430     int (*query_formats)(AVFilterContext *);
431
432     int priv_size;      ///< size of private data to allocate for the filter
433 } AVFilter;
434
435 /** An instance of a filter */
436 struct AVFilterContext {
437     const AVClass *av_class;              ///< needed for av_log()
438
439     AVFilter *filter;               ///< the AVFilter of which this is an instance
440
441     char *name;                     ///< name of this filter instance
442
443     AVFilterPad   *input_pads;      ///< array of input pads
444     AVFilterLink **inputs;          ///< array of pointers to input links
445 #if FF_API_FOO_COUNT
446     unsigned input_count;           ///< @deprecated use nb_inputs
447 #endif
448     unsigned    nb_inputs;          ///< number of input pads
449
450     AVFilterPad   *output_pads;     ///< array of output pads
451     AVFilterLink **outputs;         ///< array of pointers to output links
452 #if FF_API_FOO_COUNT
453     unsigned output_count;          ///< @deprecated use nb_outputs
454 #endif
455     unsigned    nb_outputs;         ///< number of output pads
456
457     void *priv;                     ///< private data for use by the filter
458 };
459
460 /**
461  * A link between two filters. This contains pointers to the source and
462  * destination filters between which this link exists, and the indexes of
463  * the pads involved. In addition, this link also contains the parameters
464  * which have been negotiated and agreed upon between the filter, such as
465  * image dimensions, format, etc.
466  */
467 struct AVFilterLink {
468     AVFilterContext *src;       ///< source filter
469     AVFilterPad *srcpad;        ///< output pad on the source filter
470
471     AVFilterContext *dst;       ///< dest filter
472     AVFilterPad *dstpad;        ///< input pad on the dest filter
473
474     enum AVMediaType type;      ///< filter media type
475
476     /* These parameters apply only to video */
477     int w;                      ///< agreed upon image width
478     int h;                      ///< agreed upon image height
479     AVRational sample_aspect_ratio; ///< agreed upon sample aspect ratio
480     /* These two parameters apply only to audio */
481     uint64_t channel_layout;    ///< channel layout of current buffer (see libavutil/audioconvert.h)
482     int sample_rate;            ///< samples per second
483
484     int format;                 ///< agreed upon media format
485
486     /**
487      * Define the time base used by the PTS of the frames/samples
488      * which will pass through this link.
489      * During the configuration stage, each filter is supposed to
490      * change only the output timebase, while the timebase of the
491      * input link is assumed to be an unchangeable property.
492      */
493     AVRational time_base;
494
495     /*****************************************************************
496      * All fields below this line are not part of the public API. They
497      * may not be used outside of libavfilter and can be changed and
498      * removed at will.
499      * New public fields should be added right above.
500      *****************************************************************
501      */
502     /**
503      * Lists of formats supported by the input and output filters respectively.
504      * These lists are used for negotiating the format to actually be used,
505      * which will be loaded into the format member, above, when chosen.
506      */
507     AVFilterFormats *in_formats;
508     AVFilterFormats *out_formats;
509
510     /**
511      * Lists of channel layouts and sample rates used for automatic
512      * negotiation.
513      */
514     AVFilterFormats  *in_samplerates;
515     AVFilterFormats *out_samplerates;
516     struct AVFilterChannelLayouts  *in_channel_layouts;
517     struct AVFilterChannelLayouts *out_channel_layouts;
518
519     /**
520      * Audio only, the destination filter sets this to a non-zero value to
521      * request that buffers with the given number of samples should be sent to
522      * it. AVFilterPad.needs_fifo must also be set on the corresponding input
523      * pad.
524      * Last buffer before EOF will be padded with silence.
525      */
526     int request_samples;
527
528     /** stage of the initialization of the link properties (dimensions, etc) */
529     enum {
530         AVLINK_UNINIT = 0,      ///< not started
531         AVLINK_STARTINIT,       ///< started, but incomplete
532         AVLINK_INIT             ///< complete
533     } init_state;
534
535     /**
536      * The buffer reference currently being sent across the link by the source
537      * filter. This is used internally by the filter system to allow
538      * automatic copying of buffers which do not have sufficient permissions
539      * for the destination. This should not be accessed directly by the
540      * filters.
541      */
542     AVFilterBufferRef *src_buf;
543
544     AVFilterBufferRef *cur_buf;
545     AVFilterBufferRef *out_buf;
546 };
547
548 /**
549  * Link two filters together.
550  *
551  * @param src    the source filter
552  * @param srcpad index of the output pad on the source filter
553  * @param dst    the destination filter
554  * @param dstpad index of the input pad on the destination filter
555  * @return       zero on success
556  */
557 int avfilter_link(AVFilterContext *src, unsigned srcpad,
558                   AVFilterContext *dst, unsigned dstpad);
559
560 /**
561  * Negotiate the media format, dimensions, etc of all inputs to a filter.
562  *
563  * @param filter the filter to negotiate the properties for its inputs
564  * @return       zero on successful negotiation
565  */
566 int avfilter_config_links(AVFilterContext *filter);
567
568 /**
569  * Create a buffer reference wrapped around an already allocated image
570  * buffer.
571  *
572  * @param data pointers to the planes of the image to reference
573  * @param linesize linesizes for the planes of the image to reference
574  * @param perms the required access permissions
575  * @param w the width of the image specified by the data and linesize arrays
576  * @param h the height of the image specified by the data and linesize arrays
577  * @param format the pixel format of the image specified by the data and linesize arrays
578  */
579 AVFilterBufferRef *
580 avfilter_get_video_buffer_ref_from_arrays(uint8_t *data[4], int linesize[4], int perms,
581                                           int w, int h, enum PixelFormat format);
582
583 /**
584  * Create an audio buffer reference wrapped around an already
585  * allocated samples buffer.
586  *
587  * @param data           pointers to the samples plane buffers
588  * @param linesize       linesize for the samples plane buffers
589  * @param perms          the required access permissions
590  * @param nb_samples     number of samples per channel
591  * @param sample_fmt     the format of each sample in the buffer to allocate
592  * @param channel_layout the channel layout of the buffer
593  */
594 AVFilterBufferRef *avfilter_get_audio_buffer_ref_from_arrays(uint8_t **data,
595                                                              int linesize,
596                                                              int perms,
597                                                              int nb_samples,
598                                                              enum AVSampleFormat sample_fmt,
599                                                              uint64_t channel_layout);
600
601 /** Initialize the filter system. Register all builtin filters. */
602 void avfilter_register_all(void);
603
604 /** Uninitialize the filter system. Unregister all filters. */
605 void avfilter_uninit(void);
606
607 /**
608  * Register a filter. This is only needed if you plan to use
609  * avfilter_get_by_name later to lookup the AVFilter structure by name. A
610  * filter can still by instantiated with avfilter_open even if it is not
611  * registered.
612  *
613  * @param filter the filter to register
614  * @return 0 if the registration was succesfull, a negative value
615  * otherwise
616  */
617 int avfilter_register(AVFilter *filter);
618
619 /**
620  * Get a filter definition matching the given name.
621  *
622  * @param name the filter name to find
623  * @return     the filter definition, if any matching one is registered.
624  *             NULL if none found.
625  */
626 AVFilter *avfilter_get_by_name(const char *name);
627
628 /**
629  * If filter is NULL, returns a pointer to the first registered filter pointer,
630  * if filter is non-NULL, returns the next pointer after filter.
631  * If the returned pointer points to NULL, the last registered filter
632  * was already reached.
633  */
634 AVFilter **av_filter_next(AVFilter **filter);
635
636 /**
637  * Create a filter instance.
638  *
639  * @param filter_ctx put here a pointer to the created filter context
640  * on success, NULL on failure
641  * @param filter    the filter to create an instance of
642  * @param inst_name Name to give to the new instance. Can be NULL for none.
643  * @return >= 0 in case of success, a negative error code otherwise
644  */
645 int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name);
646
647 /**
648  * Initialize a filter.
649  *
650  * @param filter the filter to initialize
651  * @param args   A string of parameters to use when initializing the filter.
652  *               The format and meaning of this string varies by filter.
653  * @param opaque Any extra non-string data needed by the filter. The meaning
654  *               of this parameter varies by filter.
655  * @return       zero on success
656  */
657 int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque);
658
659 /**
660  * Free a filter context.
661  *
662  * @param filter the filter to free
663  */
664 void avfilter_free(AVFilterContext *filter);
665
666 /**
667  * Insert a filter in the middle of an existing link.
668  *
669  * @param link the link into which the filter should be inserted
670  * @param filt the filter to be inserted
671  * @param filt_srcpad_idx the input pad on the filter to connect
672  * @param filt_dstpad_idx the output pad on the filter to connect
673  * @return     zero on success
674  */
675 int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
676                            unsigned filt_srcpad_idx, unsigned filt_dstpad_idx);
677
678 /**
679  * Copy the frame properties of src to dst, without copying the actual
680  * image data.
681  *
682  * @return 0 on success, a negative number on error.
683  */
684 int avfilter_copy_frame_props(AVFilterBufferRef *dst, const AVFrame *src);
685
686 /**
687  * Copy the frame properties and data pointers of src to dst, without copying
688  * the actual data.
689  *
690  * @return 0 on success, a negative number on error.
691  */
692 int avfilter_copy_buf_props(AVFrame *dst, const AVFilterBufferRef *src);
693
694 #endif /* AVFILTER_AVFILTER_H */