[FFmpeg-cvslog] r13322 - trunk/libavfilter/graphparser.c
vitor
subversion
Sat May 24 22:40:38 CEST 2008
Author: vitor
Date: Sat May 24 22:40:37 2008
New Revision: 13322
Log:
The name field of AVFilterInOut can be declared const
Commited in SoC by Vitor Sessak on 2008-04-21 18:42:11
Modified:
trunk/libavfilter/graphparser.c
Modified: trunk/libavfilter/graphparser.c
==============================================================================
--- trunk/libavfilter/graphparser.c (original)
+++ trunk/libavfilter/graphparser.c Sat May 24 22:40:37 2008
@@ -183,7 +183,7 @@ enum LinkType {
*/
typedef struct AVFilterInOut {
enum LinkType type;
- char *name;
+ const char *name;
AVFilterContext *filter;
int pad_idx;
More information about the ffmpeg-cvslog
mailing list