diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-04-04 20:07:41 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-04-04 20:07:41 +0000 |
commit | 7b4708780c6d6e9ec937b3148ce5df42ec55fd08 (patch) | |
tree | ff0dc26a971a14db80343cecb97d700d6c111953 /libavfilter/avfiltergraph.h | |
parent | 8af6261c27198a2b5011a3dc16048bdd80372245 (diff) | |
download | ffmpeg-7b4708780c6d6e9ec937b3148ce5df42ec55fd08.tar.gz |
Rewrite colorspace negotiation.
Commited in SoC by Bobby Bingham on 2007-12-20 19:36:26
Originally committed as revision 12711 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfiltergraph.h')
-rw-r--r-- | libavfilter/avfiltergraph.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libavfilter/avfiltergraph.h b/libavfilter/avfiltergraph.h index 9a70868182..d701a3d584 100644 --- a/libavfilter/avfiltergraph.h +++ b/libavfilter/avfiltergraph.h @@ -87,7 +87,12 @@ void avfilter_graph_free_desc(AVFilterGraphDesc *desc); void avfilter_graph_add_filter(AVFilterContext *graphctx, AVFilterContext *filter); /** - * Configure the colorspace, resolution, etc of all links in the graph + * Configure the formats of all the links in the graph + */ +int avfilter_graph_config_formats(AVFilterContext *graphctx); + +/** + * Configure the resolution, etc of all links in the graph */ int avfilter_graph_config_links(AVFilterContext *graphctx); |