Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(325)

Side by Side Diff: source/patched-ffmpeg-mt/libavfilter/avfiltergraph.h

Issue 4533003: patched ffmpeg nov 2 (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Filter graphs 2 * Filter graphs
3 * copyright (c) 2007 Bobby Bingham 3 * copyright (c) 2007 Bobby Bingham
4 * 4 *
5 * This file is part of FFmpeg. 5 * This file is part of FFmpeg.
6 * 6 *
7 * FFmpeg is free software; you can redistribute it and/or 7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public 8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version. 10 * version 2.1 of the License, or (at your option) any later version.
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 * @return 0 in case of success, a negative value otherwise 63 * @return 0 in case of success, a negative value otherwise
64 */ 64 */
65 int avfilter_graph_config_links(AVFilterGraph *graphctx, AVClass *log_ctx); 65 int avfilter_graph_config_links(AVFilterGraph *graphctx, AVClass *log_ctx);
66 66
67 /** 67 /**
68 * Configure the formats of all the links in the graph. 68 * Configure the formats of all the links in the graph.
69 */ 69 */
70 int avfilter_graph_config_formats(AVFilterGraph *graphctx, AVClass *log_ctx); 70 int avfilter_graph_config_formats(AVFilterGraph *graphctx, AVClass *log_ctx);
71 71
72 /** 72 /**
73 * Check validity and configure all the links and formats in the graph.
74 *
75 * @see avfilter_graph_check_validity(), avfilter_graph_config_links(),
76 * avfilter_graph_config_formats()
77 */
78 int avfilter_graph_config(AVFilterGraph *graphctx, AVClass *log_ctx);
79
80 /**
73 * Free a graph and destroy its links. 81 * Free a graph and destroy its links.
74 */ 82 */
75 void avfilter_graph_destroy(AVFilterGraph *graph); 83 void avfilter_graph_destroy(AVFilterGraph *graph);
76 84
77 #endif /* AVFILTER_AVFILTERGRAPH_H */ 85 #endif /* AVFILTER_AVFILTERGRAPH_H */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698