FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
avfilter.h
Go to the documentation of this file.
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 /**
26  * @file
27  * @ingroup lavfi
28  * Main libavfilter public API header
29  */
30 
31 /**
32  * @defgroup lavfi libavfilter
33  * Graph-based frame editing library.
34  *
35  * @{
36  */
37 
38 #include <stddef.h>
39 
40 #include "libavutil/attributes.h"
41 #include "libavutil/avutil.h"
42 #include "libavutil/buffer.h"
43 #include "libavutil/dict.h"
44 #include "libavutil/frame.h"
45 #include "libavutil/log.h"
46 #include "libavutil/samplefmt.h"
47 #include "libavutil/pixfmt.h"
48 #include "libavutil/rational.h"
49 
50 #include "libavfilter/version.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 typedef struct AVFilterContext AVFilterContext;
68 typedef struct AVFilterLink AVFilterLink;
69 typedef struct AVFilterPad AVFilterPad;
70 typedef struct AVFilterFormats AVFilterFormats;
71 
72 /**
73  * Get the number of elements in a NULL-terminated array of AVFilterPads (e.g.
74  * AVFilter.inputs/outputs).
75  */
76 int avfilter_pad_count(const AVFilterPad *pads);
77 
78 /**
79  * Get the name of an AVFilterPad.
80  *
81  * @param pads an array of AVFilterPads
82  * @param pad_idx index of the pad in the array it; is the caller's
83  * responsibility to ensure the index is valid
84  *
85  * @return name of the pad_idx'th pad in pads
86  */
87 const char *avfilter_pad_get_name(const AVFilterPad *pads, int pad_idx);
88 
89 /**
90  * Get the type of an AVFilterPad.
91  *
92  * @param pads an array of AVFilterPads
93  * @param pad_idx index of the pad in the array; it is the caller's
94  * responsibility to ensure the index is valid
95  *
96  * @return type of the pad_idx'th pad in pads
97  */
98 enum AVMediaType avfilter_pad_get_type(const AVFilterPad *pads, int pad_idx);
99 
100 /**
101  * The number of the filter inputs is not determined just by AVFilter.inputs.
102  * The filter might add additional inputs during initialization depending on the
103  * options supplied to it.
104  */
105 #define AVFILTER_FLAG_DYNAMIC_INPUTS (1 << 0)
106 /**
107  * The number of the filter outputs is not determined just by AVFilter.outputs.
108  * The filter might add additional outputs during initialization depending on
109  * the options supplied to it.
110  */
111 #define AVFILTER_FLAG_DYNAMIC_OUTPUTS (1 << 1)
112 /**
113  * The filter supports multithreading by splitting frames into multiple parts
114  * and processing them concurrently.
115  */
116 #define AVFILTER_FLAG_SLICE_THREADS (1 << 2)
117 /**
118  * Some filters support a generic "enable" expression option that can be used
119  * to enable or disable a filter in the timeline. Filters supporting this
120  * option have this flag set. When the enable expression is false, the default
121  * no-op filter_frame() function is called in place of the filter_frame()
122  * callback defined on each input pad, thus the frame is passed unchanged to
123  * the next filters.
124  */
125 #define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC (1 << 16)
126 /**
127  * Same as AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, except that the filter will
128  * have its filter_frame() callback(s) called as usual even when the enable
129  * expression is false. The filter will disable filtering within the
130  * filter_frame() callback(s) itself, for example executing code depending on
131  * the AVFilterContext->is_disabled value.
132  */
133 #define AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL (1 << 17)
134 /**
135  * Handy mask to test whether the filter supports or no the timeline feature
136  * (internally or generically).
137  */
138 #define AVFILTER_FLAG_SUPPORT_TIMELINE (AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL)
139 
140 /**
141  * Filter definition. This defines the pads a filter contains, and all the
142  * callback functions used to interact with the filter.
143  */
144 typedef struct AVFilter {
145  /**
146  * Filter name. Must be non-NULL and unique among filters.
147  */
148  const char *name;
149 
150  /**
151  * A description of the filter. May be NULL.
152  *
153  * You should use the NULL_IF_CONFIG_SMALL() macro to define it.
154  */
155  const char *description;
156 
157  /**
158  * List of inputs, terminated by a zeroed element.
159  *
160  * NULL if there are no (static) inputs. Instances of filters with
161  * AVFILTER_FLAG_DYNAMIC_INPUTS set may have more inputs than present in
162  * this list.
163  */
165  /**
166  * List of outputs, terminated by a zeroed element.
167  *
168  * NULL if there are no (static) outputs. Instances of filters with
169  * AVFILTER_FLAG_DYNAMIC_OUTPUTS set may have more outputs than present in
170  * this list.
171  */
173 
174  /**
175  * A class for the private data, used to declare filter private AVOptions.
176  * This field is NULL for filters that do not declare any options.
177  *
178  * If this field is non-NULL, the first member of the filter private data
179  * must be a pointer to AVClass, which will be set by libavfilter generic
180  * code to this class.
181  */
183 
184  /**
185  * A combination of AVFILTER_FLAG_*
186  */
187  int flags;
188 
189  /*****************************************************************
190  * All fields below this line are not part of the public API. They
191  * may not be used outside of libavfilter and can be changed and
192  * removed at will.
193  * New public fields should be added right above.
194  *****************************************************************
195  */
196 
197  /**
198  * Filter pre-initialization function
199  *
200  * This callback will be called immediately after the filter context is
201  * allocated, to allow allocating and initing sub-objects.
202  *
203  * If this callback is not NULL, the uninit callback will be called on
204  * allocation failure.
205  *
206  * @return 0 on success,
207  * AVERROR code on failure (but the code will be
208  * dropped and treated as ENOMEM by the calling code)
209  */
211 
212  /**
213  * Filter initialization function.
214  *
215  * This callback will be called only once during the filter lifetime, after
216  * all the options have been set, but before links between filters are
217  * established and format negotiation is done.
218  *
219  * Basic filter initialization should be done here. Filters with dynamic
220  * inputs and/or outputs should create those inputs/outputs here based on
221  * provided options. No more changes to this filter's inputs/outputs can be
222  * done after this callback.
223  *
224  * This callback must not assume that the filter links exist or frame
225  * parameters are known.
226  *
227  * @ref AVFilter.uninit "uninit" is guaranteed to be called even if
228  * initialization fails, so this callback does not have to clean up on
229  * failure.
230  *
231  * @return 0 on success, a negative AVERROR on failure
232  */
234 
235  /**
236  * Should be set instead of @ref AVFilter.init "init" by the filters that
237  * want to pass a dictionary of AVOptions to nested contexts that are
238  * allocated during init.
239  *
240  * On return, the options dict should be freed and replaced with one that
241  * contains all the options which could not be processed by this filter (or
242  * with NULL if all the options were processed).
243  *
244  * Otherwise the semantics is the same as for @ref AVFilter.init "init".
245  */
247 
248  /**
249  * Filter uninitialization function.
250  *
251  * Called only once right before the filter is freed. Should deallocate any
252  * memory held by the filter, release any buffer references, etc. It does
253  * not need to deallocate the AVFilterContext.priv memory itself.
254  *
255  * This callback may be called even if @ref AVFilter.init "init" was not
256  * called or failed, so it must be prepared to handle such a situation.
257  */
259 
260  /**
261  * Query formats supported by the filter on its inputs and outputs.
262  *
263  * This callback is called after the filter is initialized (so the inputs
264  * and outputs are fixed), shortly before the format negotiation. This
265  * callback may be called more than once.
266  *
267  * This callback must set AVFilterLink.out_formats on every input link and
268  * AVFilterLink.in_formats on every output link to a list of pixel/sample
269  * formats that the filter supports on that link. For audio links, this
270  * filter must also set @ref AVFilterLink.in_samplerates "in_samplerates" /
271  * @ref AVFilterLink.out_samplerates "out_samplerates" and
272  * @ref AVFilterLink.in_channel_layouts "in_channel_layouts" /
273  * @ref AVFilterLink.out_channel_layouts "out_channel_layouts" analogously.
274  *
275  * This callback may be NULL for filters with one input, in which case
276  * libavfilter assumes that it supports all input formats and preserves
277  * them on output.
278  *
279  * @return zero on success, a negative value corresponding to an
280  * AVERROR code otherwise
281  */
283 
284  int priv_size; ///< size of private data to allocate for the filter
285 
286  int flags_internal; ///< Additional flags for avfilter internal use only.
287 
288  /**
289  * Used by the filter registration system. Must not be touched by any other
290  * code.
291  */
292  struct AVFilter *next;
293 
294  /**
295  * Make the filter instance process a command.
296  *
297  * @param cmd the command to process, for handling simplicity all commands must be alphanumeric only
298  * @param arg the argument for the command
299  * @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.
300  * @param flags if AVFILTER_CMD_FLAG_FAST is set and the command would be
301  * time consuming then a filter should treat it like an unsupported command
302  *
303  * @returns >=0 on success otherwise an error code.
304  * AVERROR(ENOSYS) on unsupported commands
305  */
306  int (*process_command)(AVFilterContext *, const char *cmd, const char *arg, char *res, int res_len, int flags);
307 
308  /**
309  * Filter initialization function, alternative to the init()
310  * callback. Args contains the user-supplied parameters, opaque is
311  * used for providing binary data.
312  */
313  int (*init_opaque)(AVFilterContext *ctx, void *opaque);
314 
315  /**
316  * Filter activation function.
317  *
318  * Called when any processing is needed from the filter, instead of any
319  * filter_frame and request_frame on pads.
320  *
321  * The function must examine inlinks and outlinks and perform a single
322  * step of processing. If there is nothing to do, the function must do
323  * nothing and not return an error. If more steps are or may be
324  * possible, it must use ff_filter_set_ready() to schedule another
325  * activation.
326  */
328 } AVFilter;
329 
330 /**
331  * Process multiple parts of the frame concurrently.
332  */
333 #define AVFILTER_THREAD_SLICE (1 << 0)
334 
335 typedef struct AVFilterInternal AVFilterInternal;
336 
337 /** An instance of a filter */
339  const AVClass *av_class; ///< needed for av_log() and filters common options
340 
341  const AVFilter *filter; ///< the AVFilter of which this is an instance
342 
343  char *name; ///< name of this filter instance
344 
345  AVFilterPad *input_pads; ///< array of input pads
346  AVFilterLink **inputs; ///< array of pointers to input links
347  unsigned nb_inputs; ///< number of input pads
348 
349  AVFilterPad *output_pads; ///< array of output pads
350  AVFilterLink **outputs; ///< array of pointers to output links
351  unsigned nb_outputs; ///< number of output pads
352 
353  void *priv; ///< private data for use by the filter
354 
355  struct AVFilterGraph *graph; ///< filtergraph this filter belongs to
356 
357  /**
358  * Type of multithreading being allowed/used. A combination of
359  * AVFILTER_THREAD_* flags.
360  *
361  * May be set by the caller before initializing the filter to forbid some
362  * or all kinds of multithreading for this filter. The default is allowing
363  * everything.
364  *
365  * When the filter is initialized, this field is combined using bit AND with
366  * AVFilterGraph.thread_type to get the final mask used for determining
367  * allowed threading types. I.e. a threading type needs to be set in both
368  * to be allowed.
369  *
370  * After the filter is initialized, libavfilter sets this field to the
371  * threading type that is actually used (0 for no multithreading).
372  */
374 
375  /**
376  * An opaque struct for libavfilter internal use.
377  */
378  AVFilterInternal *internal;
379 
381 
382  char *enable_str; ///< enable expression string
383  void *enable; ///< parsed expression (AVExpr*)
384  double *var_values; ///< variable values for the enable expression
385  int is_disabled; ///< the enabled state from the last expression evaluation
386 
387  /**
388  * For filters which will create hardware frames, sets the device the
389  * filter should create them in. All other filters will ignore this field:
390  * in particular, a filter which consumes or processes hardware frames will
391  * instead use the hw_frames_ctx field in AVFilterLink to carry the
392  * hardware context information.
393  */
395 
396  /**
397  * Max number of threads allowed in this filter instance.
398  * If <= 0, its value is ignored.
399  * Overrides global number of threads set per filter graph.
400  */
402 
403  /**
404  * Ready status of the filter.
405  * A non-0 value means that the filter needs activating;
406  * a higher value suggests a more urgent activation.
407  */
408  unsigned ready;
409 };
410 
411 /**
412  * A link between two filters. This contains pointers to the source and
413  * destination filters between which this link exists, and the indexes of
414  * the pads involved. In addition, this link also contains the parameters
415  * which have been negotiated and agreed upon between the filter, such as
416  * image dimensions, format, etc.
417  *
418  * Applications must not normally access the link structure directly.
419  * Use the buffersrc and buffersink API instead.
420  * In the future, access to the header may be reserved for filters
421  * implementation.
422  */
423 struct AVFilterLink {
424  AVFilterContext *src; ///< source filter
425  AVFilterPad *srcpad; ///< output pad on the source filter
426 
427  AVFilterContext *dst; ///< dest filter
428  AVFilterPad *dstpad; ///< input pad on the dest filter
429 
430  enum AVMediaType type; ///< filter media type
431 
432  /* These parameters apply only to video */
433  int w; ///< agreed upon image width
434  int h; ///< agreed upon image height
435  AVRational sample_aspect_ratio; ///< agreed upon sample aspect ratio
436  /* These parameters apply only to audio */
437  uint64_t channel_layout; ///< channel layout of current buffer (see libavutil/channel_layout.h)
438  int sample_rate; ///< samples per second
439 
440  int format; ///< agreed upon media format
441 
442  /**
443  * Define the time base used by the PTS of the frames/samples
444  * which will pass through this link.
445  * During the configuration stage, each filter is supposed to
446  * change only the output timebase, while the timebase of the
447  * input link is assumed to be an unchangeable property.
448  */
450 
451  /*****************************************************************
452  * All fields below this line are not part of the public API. They
453  * may not be used outside of libavfilter and can be changed and
454  * removed at will.
455  * New public fields should be added right above.
456  *****************************************************************
457  */
458  /**
459  * Lists of formats and channel layouts supported by the input and output
460  * filters respectively. These lists are used for negotiating the format
461  * to actually be used, which will be loaded into the format and
462  * channel_layout members, above, when chosen.
463  *
464  */
467 
468  /**
469  * Lists of channel layouts and sample rates used for automatic
470  * negotiation.
471  */
476 
477  /**
478  * Audio only, the destination filter sets this to a non-zero value to
479  * request that buffers with the given number of samples should be sent to
480  * it. AVFilterPad.needs_fifo must also be set on the corresponding input
481  * pad.
482  * Last buffer before EOF will be padded with silence.
483  */
485 
486  /** stage of the initialization of the link properties (dimensions, etc) */
487  enum {
488  AVLINK_UNINIT = 0, ///< not started
489  AVLINK_STARTINIT, ///< started, but incomplete
490  AVLINK_INIT ///< complete
491  } init_state;
492 
493  /**
494  * Graph the filter belongs to.
495  */
497 
498  /**
499  * Current timestamp of the link, as defined by the most recent
500  * frame(s), in link time_base units.
501  */
502  int64_t current_pts;
503 
504  /**
505  * Current timestamp of the link, as defined by the most recent
506  * frame(s), in AV_TIME_BASE units.
507  */
508  int64_t current_pts_us;
509 
510  /**
511  * Index in the age array.
512  */
514 
515  /**
516  * Frame rate of the stream on the link, or 1/0 if unknown or variable;
517  * if left to 0/0, will be automatically copied from the first input
518  * of the source filter if it exists.
519  *
520  * Sources should set it to the best estimation of the real frame rate.
521  * If the source frame rate is unknown or variable, set this to 1/0.
522  * Filters should update it if necessary depending on their function.
523  * Sinks can use it to set a default output frame rate.
524  * It is similar to the r_frame_rate field in AVStream.
525  */
527 
528  /**
529  * Buffer partially filled with samples to achieve a fixed/minimum size.
530  */
532 
533  /**
534  * Size of the partial buffer to allocate.
535  * Must be between min_samples and max_samples.
536  */
538 
539  /**
540  * Minimum number of samples to filter at once. If filter_frame() is
541  * called with fewer samples, it will accumulate them in partial_buf.
542  * This field and the related ones must not be changed after filtering
543  * has started.
544  * If 0, all related fields are ignored.
545  */
547 
548  /**
549  * Maximum number of samples to filter at once. If filter_frame() is
550  * called with more samples, it will split them.
551  */
553 
554  /**
555  * Number of channels.
556  */
557  int channels;
558 
559  /**
560  * Link processing flags.
561  */
562  unsigned flags;
563 
564  /**
565  * Number of past frames sent through the link.
566  */
568 
569  /**
570  * A pointer to a FFFramePool struct.
571  */
572  void *frame_pool;
573 
574  /**
575  * True if a frame is currently wanted on the output of this filter.
576  * Set when ff_request_frame() is called by the output,
577  * cleared when a frame is filtered.
578  */
580 
581  /**
582  * For hwaccel pixel formats, this should be a reference to the
583  * AVHWFramesContext describing the frames.
584  */
586 
587 #ifndef FF_INTERNAL_FIELDS
588 
589  /**
590  * Internal structure members.
591  * The fields below this limit are internal for libavfilter's use
592  * and must in no way be accessed by applications.
593  */
594  char reserved[0xF000];
595 
596 #else /* FF_INTERNAL_FIELDS */
597 
598  /**
599  * Queue of frames waiting to be filtered.
600  */
601  FFFrameQueue fifo;
602 
603  /**
604  * If set, the source filter can not generate a frame as is.
605  * The goal is to avoid repeatedly calling the request_frame() method on
606  * the same link.
607  */
608  int frame_blocked_in;
609 
610  /**
611  * Link input status.
612  * If not zero, all attempts of filter_frame will fail with the
613  * corresponding code.
614  */
615  int status_in;
616 
617  /**
618  * Timestamp of the input status change.
619  */
620  int64_t status_in_pts;
621 
622  /**
623  * Link output status.
624  * If not zero, all attempts of request_frame will fail with the
625  * corresponding code.
626  */
627  int status_out;
628 
629 #endif /* FF_INTERNAL_FIELDS */
630 
631 };
632 
633 /**
634  * Link two filters together.
635  *
636  * @param src the source filter
637  * @param srcpad index of the output pad on the source filter
638  * @param dst the destination filter
639  * @param dstpad index of the input pad on the destination filter
640  * @return zero on success
641  */
642 int avfilter_link(AVFilterContext *src, unsigned srcpad,
643  AVFilterContext *dst, unsigned dstpad);
644 
645 /**
646  * Free the link in *link, and set its pointer to NULL.
647  */
648 void avfilter_link_free(AVFilterLink **link);
649 
650 /**
651  * Get the number of channels of a link.
652  */
654 
655 /**
656  * Set the closed field of a link.
657  * @deprecated applications are not supposed to mess with links, they should
658  * close the sinks.
659  */
661 void avfilter_link_set_closed(AVFilterLink *link, int closed);
662 
663 /**
664  * Negotiate the media format, dimensions, etc of all inputs to a filter.
665  *
666  * @param filter the filter to negotiate the properties for its inputs
667  * @return zero on successful negotiation
668  */
670 
671 #define AVFILTER_CMD_FLAG_ONE 1 ///< Stop once a filter understood the command (for target=all for example), fast filters are favored automatically
672 #define AVFILTER_CMD_FLAG_FAST 2 ///< Only execute command when its fast (like a video out that supports contrast adjustment in hw)
673 
674 /**
675  * Make the filter instance process a command.
676  * It is recommended to use avfilter_graph_send_command().
677  */
678 int avfilter_process_command(AVFilterContext *filter, const char *cmd, const char *arg, char *res, int res_len, int flags);
679 
680 /** Initialize the filter system. Register all builtin filters. */
681 void avfilter_register_all(void);
682 
683 #if FF_API_OLD_FILTER_REGISTER
684 /** Uninitialize the filter system. Unregister all filters. */
686 void avfilter_uninit(void);
687 #endif
688 
689 /**
690  * Register a filter. This is only needed if you plan to use
691  * avfilter_get_by_name later to lookup the AVFilter structure by name. A
692  * filter can still by instantiated with avfilter_graph_alloc_filter even if it
693  * is not registered.
694  *
695  * @param filter the filter to register
696  * @return 0 if the registration was successful, a negative value
697  * otherwise
698  */
700 
701 /**
702  * Get a filter definition matching the given name.
703  *
704  * @param name the filter name to find
705  * @return the filter definition, if any matching one is registered.
706  * NULL if none found.
707  */
708 #if !FF_API_NOCONST_GET_NAME
709 const
710 #endif
711 AVFilter *avfilter_get_by_name(const char *name);
712 
713 /**
714  * Iterate over all registered filters.
715  * @return If prev is non-NULL, next registered filter after prev or NULL if
716  * prev is the last filter. If prev is NULL, return the first registered filter.
717  */
718 const AVFilter *avfilter_next(const AVFilter *prev);
719 
720 #if FF_API_OLD_FILTER_REGISTER
721 /**
722  * If filter is NULL, returns a pointer to the first registered filter pointer,
723  * if filter is non-NULL, returns the next pointer after filter.
724  * If the returned pointer points to NULL, the last registered filter
725  * was already reached.
726  * @deprecated use avfilter_next()
727  */
729 AVFilter **av_filter_next(AVFilter **filter);
730 #endif
731 
732 #if FF_API_AVFILTER_OPEN
733 /**
734  * Create a filter instance.
735  *
736  * @param filter_ctx put here a pointer to the created filter context
737  * on success, NULL on failure
738  * @param filter the filter to create an instance of
739  * @param inst_name Name to give to the new instance. Can be NULL for none.
740  * @return >= 0 in case of success, a negative error code otherwise
741  * @deprecated use avfilter_graph_alloc_filter() instead
742  */
744 int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name);
745 #endif
746 
747 
748 #if FF_API_AVFILTER_INIT_FILTER
749 /**
750  * Initialize a filter.
751  *
752  * @param filter the filter to initialize
753  * @param args A string of parameters to use when initializing the filter.
754  * The format and meaning of this string varies by filter.
755  * @param opaque Any extra non-string data needed by the filter. The meaning
756  * of this parameter varies by filter.
757  * @return zero on success
758  */
760 int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque);
761 #endif
762 
763 /**
764  * Initialize a filter with the supplied parameters.
765  *
766  * @param ctx uninitialized filter context to initialize
767  * @param args Options to initialize the filter with. This must be a
768  * ':'-separated list of options in the 'key=value' form.
769  * May be NULL if the options have been set directly using the
770  * AVOptions API or there are no options that need to be set.
771  * @return 0 on success, a negative AVERROR on failure
772  */
773 int avfilter_init_str(AVFilterContext *ctx, const char *args);
774 
775 /**
776  * Initialize a filter with the supplied dictionary of options.
777  *
778  * @param ctx uninitialized filter context to initialize
779  * @param options An AVDictionary filled with options for this filter. On
780  * return this parameter will be destroyed and replaced with
781  * a dict containing options that were not found. This dictionary
782  * must be freed by the caller.
783  * May be NULL, then this function is equivalent to
784  * avfilter_init_str() with the second parameter set to NULL.
785  * @return 0 on success, a negative AVERROR on failure
786  *
787  * @note This function and avfilter_init_str() do essentially the same thing,
788  * the difference is in manner in which the options are passed. It is up to the
789  * calling code to choose whichever is more preferable. The two functions also
790  * behave differently when some of the provided options are not declared as
791  * supported by the filter. In such a case, avfilter_init_str() will fail, but
792  * this function will leave those extra options in the options AVDictionary and
793  * continue as usual.
794  */
796 
797 /**
798  * Free a filter context. This will also remove the filter from its
799  * filtergraph's list of filters.
800  *
801  * @param filter the filter to free
802  */
804 
805 /**
806  * Insert a filter in the middle of an existing link.
807  *
808  * @param link the link into which the filter should be inserted
809  * @param filt the filter to be inserted
810  * @param filt_srcpad_idx the input pad on the filter to connect
811  * @param filt_dstpad_idx the output pad on the filter to connect
812  * @return zero on success
813  */
815  unsigned filt_srcpad_idx, unsigned filt_dstpad_idx);
816 
817 /**
818  * @return AVClass for AVFilterContext.
819  *
820  * @see av_opt_find().
821  */
822 const AVClass *avfilter_get_class(void);
823 
825 
826 /**
827  * A function pointer passed to the @ref AVFilterGraph.execute callback to be
828  * executed multiple times, possibly in parallel.
829  *
830  * @param ctx the filter context the job belongs to
831  * @param arg an opaque parameter passed through from @ref
832  * AVFilterGraph.execute
833  * @param jobnr the index of the job being executed
834  * @param nb_jobs the total number of jobs
835  *
836  * @return 0 on success, a negative AVERROR on error
837  */
838 typedef int (avfilter_action_func)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
839 
840 /**
841  * A function executing multiple jobs, possibly in parallel.
842  *
843  * @param ctx the filter context to which the jobs belong
844  * @param func the function to be called multiple times
845  * @param arg the argument to be passed to func
846  * @param ret a nb_jobs-sized array to be filled with return values from each
847  * invocation of func
848  * @param nb_jobs the number of jobs to execute
849  *
850  * @return 0 on success, a negative AVERROR on error
851  */
853  void *arg, int *ret, int nb_jobs);
854 
855 typedef struct AVFilterGraph {
858  unsigned nb_filters;
859 
860  char *scale_sws_opts; ///< sws options to use for the auto-inserted scale filters
861 #if FF_API_LAVR_OPTS
862  attribute_deprecated char *resample_lavr_opts; ///< libavresample options to use for the auto-inserted resample filters
863 #endif
864 
865  /**
866  * Type of multithreading allowed for filters in this graph. A combination
867  * of AVFILTER_THREAD_* flags.
868  *
869  * May be set by the caller at any point, the setting will apply to all
870  * filters initialized after that. The default is allowing everything.
871  *
872  * When a filter in this graph is initialized, this field is combined using
873  * bit AND with AVFilterContext.thread_type to get the final mask used for
874  * determining allowed threading types. I.e. a threading type needs to be
875  * set in both to be allowed.
876  */
878 
879  /**
880  * Maximum number of threads used by filters in this graph. May be set by
881  * the caller before adding any filters to the filtergraph. Zero (the
882  * default) means that the number of threads is determined automatically.
883  */
885 
886  /**
887  * Opaque object for libavfilter internal use.
888  */
890 
891  /**
892  * Opaque user data. May be set by the caller to an arbitrary value, e.g. to
893  * be used from callbacks like @ref AVFilterGraph.execute.
894  * Libavfilter will not touch this field in any way.
895  */
896  void *opaque;
897 
898  /**
899  * This callback may be set by the caller immediately after allocating the
900  * graph and before adding any filters to it, to provide a custom
901  * multithreading implementation.
902  *
903  * If set, filters with slice threading capability will call this callback
904  * to execute multiple jobs in parallel.
905  *
906  * If this field is left unset, libavfilter will use its internal
907  * implementation, which may or may not be multithreaded depending on the
908  * platform and build options.
909  */
911 
912  char *aresample_swr_opts; ///< swr options to use for the auto-inserted aresample filters, Access ONLY through AVOptions
913 
914  /**
915  * Private fields
916  *
917  * The following fields are for internal use only.
918  * Their type, offset, number and semantic can change without notice.
919  */
920 
923 
925 } AVFilterGraph;
926 
927 /**
928  * Allocate a filter graph.
929  *
930  * @return the allocated filter graph on success or NULL.
931  */
933 
934 /**
935  * Create a new filter instance in a filter graph.
936  *
937  * @param graph graph in which the new filter will be used
938  * @param filter the filter to create an instance of
939  * @param name Name to give to the new instance (will be copied to
940  * AVFilterContext.name). This may be used by the caller to identify
941  * different filters, libavfilter itself assigns no semantics to
942  * this parameter. May be NULL.
943  *
944  * @return the context of the newly created filter instance (note that it is
945  * also retrievable directly through AVFilterGraph.filters or with
946  * avfilter_graph_get_filter()) on success or NULL on failure.
947  */
949  const AVFilter *filter,
950  const char *name);
951 
952 /**
953  * Get a filter instance identified by instance name from graph.
954  *
955  * @param graph filter graph to search through.
956  * @param name filter instance name (should be unique in the graph).
957  * @return the pointer to the found filter instance or NULL if it
958  * cannot be found.
959  */
961 
962 #if FF_API_AVFILTER_OPEN
963 /**
964  * Add an existing filter instance to a filter graph.
965  *
966  * @param graphctx the filter graph
967  * @param filter the filter to be added
968  *
969  * @deprecated use avfilter_graph_alloc_filter() to allocate a filter in a
970  * filter graph
971  */
973 int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter);
974 #endif
975 
976 /**
977  * Create and add a filter instance into an existing graph.
978  * The filter instance is created from the filter filt and inited
979  * with the parameters args and opaque.
980  *
981  * In case of success put in *filt_ctx the pointer to the created
982  * filter instance, otherwise set *filt_ctx to NULL.
983  *
984  * @param name the instance name to give to the created filter instance
985  * @param graph_ctx the filter graph
986  * @return a negative AVERROR error code in case of failure, a non
987  * negative value otherwise
988  */
990  const char *name, const char *args, void *opaque,
991  AVFilterGraph *graph_ctx);
992 
993 /**
994  * Enable or disable automatic format conversion inside the graph.
995  *
996  * Note that format conversion can still happen inside explicitly inserted
997  * scale and aresample filters.
998  *
999  * @param flags any of the AVFILTER_AUTO_CONVERT_* constants
1000  */
1001 void avfilter_graph_set_auto_convert(AVFilterGraph *graph, unsigned flags);
1002 
1003 enum {
1004  AVFILTER_AUTO_CONVERT_ALL = 0, /**< all automatic conversions enabled */
1005  AVFILTER_AUTO_CONVERT_NONE = -1, /**< all automatic conversions disabled */
1006 };
1007 
1008 /**
1009  * Check validity and configure all the links and formats in the graph.
1010  *
1011  * @param graphctx the filter graph
1012  * @param log_ctx context used for logging
1013  * @return >= 0 in case of success, a negative AVERROR code otherwise
1014  */
1015 int avfilter_graph_config(AVFilterGraph *graphctx, void *log_ctx);
1016 
1017 /**
1018  * Free a graph, destroy its links, and set *graph to NULL.
1019  * If *graph is NULL, do nothing.
1020  */
1021 void avfilter_graph_free(AVFilterGraph **graph);
1022 
1023 /**
1024  * A linked-list of the inputs/outputs of the filter chain.
1025  *
1026  * This is mainly useful for avfilter_graph_parse() / avfilter_graph_parse2(),
1027  * where it is used to communicate open (unlinked) inputs and outputs from and
1028  * to the caller.
1029  * This struct specifies, per each not connected pad contained in the graph, the
1030  * filter context and the pad index required for establishing a link.
1031  */
1032 typedef struct AVFilterInOut {
1033  /** unique name for this input/output in the list */
1034  char *name;
1035 
1036  /** filter context associated to this input/output */
1038 
1039  /** index of the filt_ctx pad to use for linking */
1040  int pad_idx;
1041 
1042  /** next input/input in the list, NULL if this is the last */
1044 } AVFilterInOut;
1045 
1046 /**
1047  * Allocate a single AVFilterInOut entry.
1048  * Must be freed with avfilter_inout_free().
1049  * @return allocated AVFilterInOut on success, NULL on failure.
1050  */
1052 
1053 /**
1054  * Free the supplied list of AVFilterInOut and set *inout to NULL.
1055  * If *inout is NULL, do nothing.
1056  */
1057 void avfilter_inout_free(AVFilterInOut **inout);
1058 
1059 /**
1060  * Add a graph described by a string to a graph.
1061  *
1062  * @note The caller must provide the lists of inputs and outputs,
1063  * which therefore must be known before calling the function.
1064  *
1065  * @note The inputs parameter describes inputs of the already existing
1066  * part of the graph; i.e. from the point of view of the newly created
1067  * part, they are outputs. Similarly the outputs parameter describes
1068  * outputs of the already existing filters, which are provided as
1069  * inputs to the parsed filters.
1070  *
1071  * @param graph the filter graph where to link the parsed graph context
1072  * @param filters string to be parsed
1073  * @param inputs linked list to the inputs of the graph
1074  * @param outputs linked list to the outputs of the graph
1075  * @return zero on success, a negative AVERROR code on error
1076  */
1077 int avfilter_graph_parse(AVFilterGraph *graph, const char *filters,
1079  void *log_ctx);
1080 
1081 /**
1082  * Add a graph described by a string to a graph.
1083  *
1084  * In the graph filters description, if the input label of the first
1085  * filter is not specified, "in" is assumed; if the output label of
1086  * the last filter is not specified, "out" is assumed.
1087  *
1088  * @param graph the filter graph where to link the parsed graph context
1089  * @param filters string to be parsed
1090  * @param inputs pointer to a linked list to the inputs of the graph, may be NULL.
1091  * If non-NULL, *inputs is updated to contain the list of open inputs
1092  * after the parsing, should be freed with avfilter_inout_free().
1093  * @param outputs pointer to a linked list to the outputs of the graph, may be NULL.
1094  * If non-NULL, *outputs is updated to contain the list of open outputs
1095  * after the parsing, should be freed with avfilter_inout_free().
1096  * @return non negative on success, a negative AVERROR code on error
1097  */
1098 int avfilter_graph_parse_ptr(AVFilterGraph *graph, const char *filters,
1100  void *log_ctx);
1101 
1102 /**
1103  * Add a graph described by a string to a graph.
1104  *
1105  * @param[in] graph the filter graph where to link the parsed graph context
1106  * @param[in] filters string to be parsed
1107  * @param[out] inputs a linked list of all free (unlinked) inputs of the
1108  * parsed graph will be returned here. It is to be freed
1109  * by the caller using avfilter_inout_free().
1110  * @param[out] outputs a linked list of all free (unlinked) outputs of the
1111  * parsed graph will be returned here. It is to be freed by the
1112  * caller using avfilter_inout_free().
1113  * @return zero on success, a negative AVERROR code on error
1114  *
1115  * @note This function returns the inputs and outputs that are left
1116  * unlinked after parsing the graph and the caller then deals with
1117  * them.
1118  * @note This function makes no reference whatsoever to already
1119  * existing parts of the graph and the inputs parameter will on return
1120  * contain inputs of the newly parsed part of the graph. Analogously
1121  * the outputs parameter will contain outputs of the newly created
1122  * filters.
1123  */
1124 int avfilter_graph_parse2(AVFilterGraph *graph, const char *filters,
1127 
1128 /**
1129  * Send a command to one or more filter instances.
1130  *
1131  * @param graph the filter graph
1132  * @param target the filter(s) to which the command should be sent
1133  * "all" sends to all filters
1134  * otherwise it can be a filter or filter instance name
1135  * which will send the command to all matching filters.
1136  * @param cmd the command to send, for handling simplicity all commands must be alphanumeric only
1137  * @param arg the argument for the command
1138  * @param res a buffer with size res_size where the filter(s) can return a response.
1139  *
1140  * @returns >=0 on success otherwise an error code.
1141  * AVERROR(ENOSYS) on unsupported commands
1142  */
1143 int avfilter_graph_send_command(AVFilterGraph *graph, const char *target, const char *cmd, const char *arg, char *res, int res_len, int flags);
1144 
1145 /**
1146  * Queue a command for one or more filter instances.
1147  *
1148  * @param graph the filter graph
1149  * @param target the filter(s) to which the command should be sent
1150  * "all" sends to all filters
1151  * otherwise it can be a filter or filter instance name
1152  * which will send the command to all matching filters.
1153  * @param cmd the command to sent, for handling simplicity all commands must be alphanumeric only
1154  * @param arg the argument for the command
1155  * @param ts time at which the command should be sent to the filter
1156  *
1157  * @note As this executes commands after this function returns, no return code
1158  * from the filter is provided, also AVFILTER_CMD_FLAG_ONE is not supported.
1159  */
1160 int avfilter_graph_queue_command(AVFilterGraph *graph, const char *target, const char *cmd, const char *arg, int flags, double ts);
1161 
1162 
1163 /**
1164  * Dump a graph into a human-readable string representation.
1165  *
1166  * @param graph the graph to dump
1167  * @param options formatting options; currently ignored
1168  * @return a string, or NULL in case of memory allocation failure;
1169  * the string must be freed using av_free
1170  */
1171 char *avfilter_graph_dump(AVFilterGraph *graph, const char *options);
1172 
1173 /**
1174  * Request a frame on the oldest sink link.
1175  *
1176  * If the request returns AVERROR_EOF, try the next.
1177  *
1178  * Note that this function is not meant to be the sole scheduling mechanism
1179  * of a filtergraph, only a convenience function to help drain a filtergraph
1180  * in a balanced way under normal circumstances.
1181  *
1182  * Also note that AVERROR_EOF does not mean that frames did not arrive on
1183  * some of the sinks during the process.
1184  * When there are multiple sink links, in case the requested link
1185  * returns an EOF, this may cause a filter to flush pending frames
1186  * which are sent to another sink link, although unrequested.
1187  *
1188  * @return the return value of ff_request_frame(),
1189  * or AVERROR_EOF if all links returned AVERROR_EOF
1190  */
1192 
1193 /**
1194  * @}
1195  */
1196 
1197 #endif /* AVFILTER_AVFILTER_H */
AVFilterContext ** filters
Definition: avfilter.h:857
void avfilter_graph_set_auto_convert(AVFilterGraph *graph, unsigned flags)
Enable or disable automatic format conversion inside the graph.
double * var_values
variable values for the enable expression
Definition: avfilter.h:384
int sink_links_count
Definition: avfilter.h:922
This structure describes decoded (raw) audio or video data.
Definition: frame.h:201
int avfilter_graph_queue_command(AVFilterGraph *graph, const char *target, const char *cmd, const char *arg, int flags, double ts)
Queue a command for one or more filter instances.
int thread_type
Type of multithreading allowed for filters in this graph.
Definition: avfilter.h:877
void avfilter_free(AVFilterContext *filter)
Free a filter context.
Definition: avfilter.c:815
AVFilterGraph * avfilter_graph_alloc(void)
Allocate a filter graph.
Definition: avfiltergraph.c:80
int(* init)(AVFilterContext *ctx)
Filter initialization function.
Definition: avfilter.h:233
int(* preinit)(AVFilterContext *ctx)
Filter pre-initialization function.
Definition: avfilter.h:210
int avfilter_graph_config(AVFilterGraph *graphctx, void *log_ctx)
Check validity and configure all the links and formats in the graph.
void avfilter_inout_free(AVFilterInOut **inout)
Free the supplied list of AVFilterInOut and set *inout to NULL.
Definition: graphparser.c:203
struct AVFilterInOut * next
next input/input in the list, NULL if this is the last
Definition: avfilter.h:1043
Queue of AVFrame pointers.
Definition: framequeue.h:53
enum AVMediaType avfilter_pad_get_type(const AVFilterPad *pads, int pad_idx)
Get the type of an AVFilterPad.
Definition: avfilter.c:1110
Libavfilter version macros.
void avfilter_graph_free(AVFilterGraph **graph)
Free a graph, destroy its links, and set *graph to NULL.
AVBufferRef * hw_device_ctx
For filters which will create hardware frames, sets the device the filter should create them in...
Definition: avfilter.h:394
Convenience header that includes libavutil's core.
int(* query_formats)(AVFilterContext *)
Query formats supported by the filter on its inputs and outputs.
Definition: avfilter.h:282
#define src
Definition: vp8dsp.c:254
int thread_type
Type of multithreading being allowed/used.
Definition: avfilter.h:373
int is_disabled
the enabled state from the last expression evaluation
Definition: avfilter.h:385
Macro definitions for various function/variable attributes.
int nb_threads
Max number of threads allowed in this filter instance.
Definition: avfilter.h:401
char * scale_sws_opts
sws options to use for the auto-inserted scale filters
Definition: avfilter.h:860
struct AVFilterGraph * graph
filtergraph this filter belongs to
Definition: avfilter.h:355
int priv_size
size of private data to allocate for the filter
Definition: avfilter.h:284
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:346
char * name
name of this filter instance
Definition: avfilter.h:343
Public dictionary API.
avfilter_execute_func * execute
This callback may be set by the caller immediately after allocating the graph and before adding any f...
Definition: avfilter.h:910
int avfilter_link(AVFilterContext *src, unsigned srcpad, AVFilterContext *dst, unsigned dstpad)
Link two filters together.
Definition: avfilter.c:135
AVFilterPad * output_pads
array of output pads
Definition: avfilter.h:349
const char * avfilter_license(void)
Return the libavfilter license.
Definition: avfilter.c:88
unsigned ready
Ready status of the filter.
Definition: avfilter.h:408
static void filter(int16_t *output, ptrdiff_t out_stride, int16_t *low, ptrdiff_t low_stride, int16_t *high, ptrdiff_t high_stride, int len, uint8_t clip)
Definition: cfhd.c:80
int flags
A combination of AVFILTER_FLAG_*.
Definition: avfilter.h:187
void avfilter_register_all(void)
Initialize the filter system.
Definition: allfilters.c:407
int avfilter_graph_create_filter(AVFilterContext **filt_ctx, const AVFilter *filt, const char *name, const char *args, void *opaque, AVFilterGraph *graph_ctx)
Create and add a filter instance into an existing graph.
int nb_threads
Maximum number of threads used by filters in this graph.
Definition: avfilter.h:884
int avfilter_config_links(AVFilterContext *filter)
Negotiate the media format, dimensions, etc of all inputs to a filter.
Definition: avfilter.c:275
static int flags
Definition: log.c:57
const AVFilter * avfilter_next(const AVFilter *prev)
Iterate over all registered filters.
Definition: avfilter.c:612
AVFilterContext * avfilter_graph_get_filter(AVFilterGraph *graph, const char *name)
Get a filter instance identified by instance name from graph.
void(* uninit)(AVFilterContext *ctx)
Filter uninitialization function.
Definition: avfilter.h:258
int(* process_command)(AVFilterContext *, const char *cmd, const char *arg, char *res, int res_len, int flags)
Make the filter instance process a command.
Definition: avfilter.h:306
int avfilter_graph_parse2(AVFilterGraph *graph, const char *filters, AVFilterInOut **inputs, AVFilterInOut **outputs)
Add a graph described by a string to a graph.
Definition: graphparser.c:407
const OptionDef options[]
Definition: ffserver.c:3948
A filter pad used for either input or output.
Definition: internal.h:54
AVFilterPad * input_pads
array of input pads
Definition: avfilter.h:345
int( avfilter_action_func)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
A function pointer passed to the AVFilterGraph::execute callback to be executed multiple times...
Definition: avfilter.h:838
int avfilter_link_get_channels(AVFilterLink *link)
Get the number of channels of a link.
Definition: avfilter.c:186
const AVClass * av_class
Definition: avfilter.h:856
unsigned nb_outputs
number of output pads
Definition: avfilter.h:351
unsigned avfilter_version(void)
Return the LIBAVFILTER_VERSION_INT constant.
Definition: avfilter.c:77
void * priv
private data for use by the filter
Definition: avfilter.h:353
char * enable_str
enable expression string
Definition: avfilter.h:382
const char * arg
Definition: jacosubdec.c:66
int(* init_dict)(AVFilterContext *ctx, AVDictionary **options)
Should be set instead of init by the filters that want to pass a dictionary of AVOptions to nested co...
Definition: avfilter.h:246
static FilteringContext * filter_ctx
Definition: transcoding.c:46
AVFilterLink ** sink_links
Private fields.
Definition: avfilter.h:921
reference-counted frame API
const AVFilter * avfilter_get_by_name(const char *name)
Get a filter definition matching the given name.
Definition: avfilter.c:582
attribute_deprecated void avfilter_link_set_closed(AVFilterLink *link, int closed)
Set the closed field of a link.
Definition: avfilter.c:233
unsigned nb_inputs
number of input pads
Definition: avfilter.h:347
typedef void(APIENTRY *FF_PFNGLACTIVETEXTUREPROC)(GLenum texture)
AVFormatContext * ctx
Definition: movenc.c:48
all automatic conversions enabled
Definition: avfilter.h:1004
int flags_internal
Additional flags for avfilter internal use only.
Definition: avfilter.h:286
static const AVFilterPad outputs[]
Definition: af_afftfilt.c:389
int(* init_opaque)(AVFilterContext *ctx, void *opaque)
Filter initialization function, alternative to the init() callback.
Definition: avfilter.h:313
AVFilterContext * filter_ctx
filter context associated to this input/output
Definition: avfilter.h:1037
A list of supported channel layouts.
Definition: formats.h:85
int avfilter_init_str(AVFilterContext *ctx, const char *args)
Initialize a filter with the supplied parameters.
Definition: avfilter.c:986
const AVFilterPad * inputs
List of inputs, terminated by a zeroed element.
Definition: avfilter.h:164
const AVClass * avfilter_get_class(void)
Definition: avfilter.c:1691
A linked-list of the inputs/outputs of the filter chain.
Definition: avfilter.h:1032
int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt, unsigned filt_srcpad_idx, unsigned filt_dstpad_idx)
Insert a filter in the middle of an existing link.
Definition: avfilter.c:238
int( avfilter_execute_func)(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)
A function executing multiple jobs, possibly in parallel.
Definition: avfilter.h:852
const AVClass * priv_class
A class for the private data, used to declare filter private AVOptions.
Definition: avfilter.h:182
static const AVFilterPad inputs[]
Definition: af_afftfilt.c:379
int avfilter_graph_request_oldest(AVFilterGraph *graph)
Request a frame on the oldest sink link.
int avfilter_process_command(AVFilterContext *filter, const char *cmd, const char *arg, char *res, int res_len, int flags)
Make the filter instance process a command.
Definition: avfilter.c:555
int avfilter_graph_parse(AVFilterGraph *graph, const char *filters, AVFilterInOut *inputs, AVFilterInOut *outputs, void *log_ctx)
Add a graph described by a string to a graph.
Definition: graphparser.c:475
Describe the class of an AVClass context structure.
Definition: log.h:67
Filter definition.
Definition: avfilter.h:144
int pad_idx
index of the filt_ctx pad to use for linking
Definition: avfilter.h:1040
Rational number (pair of numerator and denominator).
Definition: rational.h:58
struct AVFilter * next
Used by the filter registration system.
Definition: avfilter.h:292
int(* func)(AVBPrint *dst, const char *in, const char *arg)
Definition: jacosubdec.c:67
AVMediaType
Definition: avutil.h:199
refcounted data buffer API
const char * name
Filter name.
Definition: avfilter.h:148
unsigned nb_filters
Definition: avfilter.h:858
const char * avfilter_configuration(void)
Return the libavfilter build-time configuration.
Definition: avfilter.c:83
const char * avfilter_pad_get_name(const AVFilterPad *pads, int pad_idx)
Get the name of an AVFilterPad.
Definition: avfilter.c:1105
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:350
char * name
unique name for this input/output in the list
Definition: avfilter.h:1034
static const int8_t filt[NUMTAPS]
Definition: af_earwax.c:39
#define attribute_deprecated
Definition: attributes.h:94
int avfilter_init_dict(AVFilterContext *ctx, AVDictionary **options)
Initialize a filter with the supplied dictionary of options.
Definition: avfilter.c:949
A reference to a data buffer.
Definition: buffer.h:81
void * opaque
Opaque user data.
Definition: avfilter.h:896
int
AVFilterInOut * avfilter_inout_alloc(void)
Allocate a single AVFilterInOut entry.
Definition: graphparser.c:198
Utilties for rational number calculation.
struct AVFilterCommand * command_queue
Definition: avfilter.h:380
char * avfilter_graph_dump(AVFilterGraph *graph, const char *options)
Dump a graph into a human-readable string representation.
Definition: graphdump.c:154
int avfilter_graph_send_command(AVFilterGraph *graph, const char *target, const char *cmd, const char *arg, char *res, int res_len, int flags)
Send a command to one or more filter instances.
char * aresample_swr_opts
swr options to use for the auto-inserted aresample filters, Access ONLY through AVOptions ...
Definition: avfilter.h:912
pixel format definitions
const char * description
A description of the filter.
Definition: avfilter.h:155
int avfilter_register(AVFilter *filter)
Register a filter.
Definition: avfilter.c:596
AVFilterContext * avfilter_graph_alloc_filter(AVFilterGraph *graph, const AVFilter *filter, const char *name)
Create a new filter instance in a filter graph.
void * enable
parsed expression (AVExpr*)
Definition: avfilter.h:383
const AVClass * av_class
needed for av_log() and filters common options
Definition: avfilter.h:339
static const struct PPFilter filters[]
Definition: postprocess.c:134
A list of supported formats for one end of a filter link.
Definition: formats.h:64
int avfilter_graph_parse_ptr(AVFilterGraph *graph, const char *filters, AVFilterInOut **inputs, AVFilterInOut **outputs, void *log_ctx)
Add a graph described by a string to a graph.
Definition: graphparser.c:538
An instance of a filter.
Definition: avfilter.h:338
int avfilter_pad_count(const AVFilterPad *pads)
Get the number of elements in a NULL-terminated array of AVFilterPads (e.g.
Definition: avfilter.c:628
const AVFilterPad * outputs
List of outputs, terminated by a zeroed element.
Definition: avfilter.h:172
int(* activate)(AVFilterContext *ctx)
Filter activation function.
Definition: avfilter.h:327
void avfilter_link_free(AVFilterLink **link)
Free the link in *link, and set its pointer to NULL.
Definition: avfilter.c:174
all automatic conversions disabled
Definition: avfilter.h:1005
const AVFilter * filter
the AVFilter of which this is an instance
Definition: avfilter.h:341
unsigned disable_auto_convert
Definition: avfilter.h:924
const char * name
Definition: opengl_enc.c:103