Commit 34f36b73 authored by vitor's avatar vitor

The name field of AVFilterInOut can be declared const

Commited in SoC by Vitor Sessak on 2008-04-21 18:42:11


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13322 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3e86e8d3
...@@ -183,7 +183,7 @@ enum LinkType { ...@@ -183,7 +183,7 @@ enum LinkType {
*/ */
typedef struct AVFilterInOut { typedef struct AVFilterInOut {
enum LinkType type; enum LinkType type;
char *name; const char *name;
AVFilterContext *filter; AVFilterContext *filter;
int pad_idx; 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