Make two variables const

Commited in SoC by Vitor Sessak on 2008-04-10 21:06:35

Originally committed as revision 13305 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2008-05-24 20:39:45 +00:00
parent 22260824c0
commit 03cea46194
2 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ static const AVClass filter_parser_class = {
static const AVClass *log_ctx = &filter_parser_class; static const AVClass *log_ctx = &filter_parser_class;
static AVFilterContext *create_filter(AVFilterGraph *ctx, int index, static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
char *name, char *args) const char *name, const char *args)
{ {
AVFilterContext *filt; AVFilterContext *filt;

View File

@ -31,8 +31,8 @@
* @param filters string to be parsed * @param filters string to be parsed
* @param in input to the graph to be parsed (TODO: allow several) * @param in input to the graph to be parsed (TODO: allow several)
* @param inpad pad index of the input * @param inpad pad index of the input
* @param in output to the graph to be parsed (TODO: allow several) * @param out output to the graph to be parsed (TODO: allow several)
* @param inpad pad index of the output * @param outpad pad index of the output
* @return zero on success, -1 on error * @return zero on success, -1 on error
*/ */
int avfilter_parse_graph(AVFilterGraph *graph, const char *filters, AVFilterContext *in, int inpad, AVFilterContext *out, int outpad); int avfilter_parse_graph(AVFilterGraph *graph, const char *filters, AVFilterContext *in, int inpad, AVFilterContext *out, int outpad);