FFmpeg
Data Fields
AVFilterGraph Struct Reference

#include <avfilter.h>

Data Fields

const AVClassav_class
 
AVFilterContext ** filters
 
unsigned nb_filters
 
char * scale_sws_opts
 sws options to use for the auto-inserted scale filters More...
 
int thread_type
 Type of multithreading allowed for filters in this graph. More...
 
int nb_threads
 Maximum number of threads used by filters in this graph. More...
 
AVFilterGraphInternalinternal
 Opaque object for libavfilter internal use. More...
 
void * opaque
 Opaque user data. More...
 
avfilter_execute_funcexecute
 This callback may be set by the caller immediately after allocating the graph and before adding any filters to it, to provide a custom multithreading implementation. More...
 
char * aresample_swr_opts
 swr options to use for the auto-inserted aresample filters, Access ONLY through AVOptions More...
 
AVFilterLink ** sink_links
 Private fields. More...
 
int sink_links_count
 
unsigned disable_auto_convert
 

Detailed Description

Examples
filter_audio.c, filtering_audio.c, filtering_video.c, and transcoding.c.

Definition at line 861 of file avfilter.h.

Field Documentation

◆ av_class

const AVClass* AVFilterGraph::av_class

Definition at line 862 of file avfilter.h.

◆ filters

AVFilterContext** AVFilterGraph::filters

Definition at line 863 of file avfilter.h.

Referenced by hw_device_setup_for_filter(), and main().

◆ nb_filters

unsigned AVFilterGraph::nb_filters

Definition at line 864 of file avfilter.h.

Referenced by hw_device_setup_for_filter(), and main().

◆ scale_sws_opts

char* AVFilterGraph::scale_sws_opts

sws options to use for the auto-inserted scale filters

Definition at line 866 of file avfilter.h.

Referenced by configure_filtergraph().

◆ thread_type

int AVFilterGraph::thread_type

Type of multithreading allowed for filters in this graph.

A combination of AVFILTER_THREAD_* flags.

May be set by the caller at any point, the setting will apply to all filters initialized after that. The default is allowing everything.

When a filter in this graph is initialized, this field is combined using bit AND with AVFilterContext.thread_type to get the final mask used for determining allowed threading types. I.e. a threading type needs to be set in both to be allowed.

Definition at line 880 of file avfilter.h.

◆ nb_threads

int AVFilterGraph::nb_threads

Maximum number of threads used by filters in this graph.

May be set by the caller before adding any filters to the filtergraph. Zero (the default) means that the number of threads is determined automatically.

Definition at line 887 of file avfilter.h.

Referenced by configure_filtergraph().

◆ internal

AVFilterGraphInternal* AVFilterGraph::internal

Opaque object for libavfilter internal use.

Definition at line 892 of file avfilter.h.

◆ opaque

void* AVFilterGraph::opaque

Opaque user data.

May be set by the caller to an arbitrary value, e.g. to be used from callbacks like AVFilterGraph::execute. Libavfilter will not touch this field in any way.

Definition at line 899 of file avfilter.h.

◆ execute

avfilter_execute_func* AVFilterGraph::execute

This callback may be set by the caller immediately after allocating the graph and before adding any filters to it, to provide a custom multithreading implementation.

If set, filters with slice threading capability will call this callback to execute multiple jobs in parallel.

If this field is left unset, libavfilter will use its internal implementation, which may or may not be multithreaded depending on the platform and build options.

Definition at line 913 of file avfilter.h.

◆ aresample_swr_opts

char* AVFilterGraph::aresample_swr_opts

swr options to use for the auto-inserted aresample filters, Access ONLY through AVOptions

Definition at line 915 of file avfilter.h.

◆ sink_links

AVFilterLink** AVFilterGraph::sink_links

Private fields.

The following fields are for internal use only. Their type, offset, number and semantic can change without notice.

Definition at line 924 of file avfilter.h.

◆ sink_links_count

int AVFilterGraph::sink_links_count

Definition at line 925 of file avfilter.h.

◆ disable_auto_convert

unsigned AVFilterGraph::disable_auto_convert

Definition at line 927 of file avfilter.h.


The documentation for this struct was generated from the following file: