diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-06-01 16:07:48 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-06-01 16:07:48 +0000 |
commit | 0802356cfca638775a67680aaa602259db745689 (patch) | |
tree | 2f80997e13960bacb4c652a06a0ba5a41ae6e0ba /libavfilter/graphparser.h | |
parent | 9e1cc5984cd554fb490c22f97d8d6fc30395fe04 (diff) | |
download | ffmpeg-0802356cfca638775a67680aaa602259db745689.tar.gz |
Remove the const qualifier for the name field of AVFilterInOut, since
it is meant to be freed.
Fix warnings.
Originally committed as revision 19072 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/graphparser.h')
-rw-r--r-- | libavfilter/graphparser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/graphparser.h b/libavfilter/graphparser.h index d21d7faeb7..e69f295740 100644 --- a/libavfilter/graphparser.h +++ b/libavfilter/graphparser.h @@ -29,7 +29,7 @@ * A linked-list of the inputs/outputs of the filter chain. */ typedef struct AVFilterInOut { - const char *name; + char *name; AVFilterContext *filter; int pad_idx; |