Commit 0802356c authored by Stefano Sabatini's avatar Stefano Sabatini

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
parent 9e1cc598
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment