Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2009-06-01 20:07:48 +0400
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2009-06-01 20:07:48 +0400
commit0802356cfca638775a67680aaa602259db745689 (patch)
tree2f80997e13960bacb4c652a06a0ba5a41ae6e0ba /libavfilter
parent9e1cc5984cd554fb490c22f97d8d6fc30395fe04 (diff)
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')
-rw-r--r--libavfilter/graphparser.h2
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;