diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-11-04 20:34:19 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-11-04 20:34:19 +0000 |
commit | e15aeea6565f0e6386db7738814fcdde46c2dec3 (patch) | |
tree | 91d372dcc385aa2107ba29c392e4723c59b46af9 /libavfilter/avfiltergraph.h | |
parent | a6fdd5748fa015eaaf085695fc59240b6d0b9a7d (diff) | |
download | ffmpeg-e15aeea6565f0e6386db7738814fcdde46c2dec3.tar.gz |
Implement avfilter_graph_alloc().
Originally committed as revision 25673 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfiltergraph.h')
-rw-r--r-- | libavfilter/avfiltergraph.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavfilter/avfiltergraph.h b/libavfilter/avfiltergraph.h index efb9cc02bc..0b08f026d2 100644 --- a/libavfilter/avfiltergraph.h +++ b/libavfilter/avfiltergraph.h @@ -32,6 +32,11 @@ typedef struct AVFilterGraph { } AVFilterGraph; /** + * Allocate a filter graph. + */ +AVFilterGraph *avfilter_graph_alloc(void); + +/** * Get a filter instance with name name from graph. * * @return the pointer to the found filter instance or NULL if it |