Commit 6deab3c0 authored by stefano's avatar stefano

Remove the const qualifier for the name field of AVFilterInOut, since

it is meant to be freed.
Fix warnings.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19072 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 25b62795
......@@ -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