Преглед изворни кода

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

Stefano Sabatini пре 16 година
родитељ
комит
0802356cfc
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      libavfilter/graphparser.h

+ 1 - 1
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;