Commit 498f0305 authored by Vitor Sessak's avatar Vitor Sessak

The name field of AVFilterInOut can be declared const

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

Originally committed as revision 13322 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent dbec351d
...@@ -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