Browse Source

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
tags/v0.5
Vitor Sessak 18 years ago
parent
commit
498f030583
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/graphparser.c

+ 1
- 1
libavfilter/graphparser.c View File

@@ -183,7 +183,7 @@ enum LinkType {
*/
typedef struct AVFilterInOut {
enum LinkType type;
char *name;
const char *name;
AVFilterContext *filter;
int pad_idx;



Loading…
Cancel
Save