提交 05decb00 编写于 作者: V Vitor Sessak

Add const to silence warnings

Commited in SoC by Vitor Sessak on 2008-02-09 15:59:47

Originally committed as revision 12041 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 35db407e
...@@ -288,7 +288,7 @@ void avfilter_draw_slice(AVFilterLink *link, int y, int h) ...@@ -288,7 +288,7 @@ void avfilter_draw_slice(AVFilterLink *link, int y, int h)
link_dpad(link).draw_slice(link, y, h); link_dpad(link).draw_slice(link, y, h);
} }
AVFilter *avfilter_get_by_name(char *name) AVFilter *avfilter_get_by_name(const char *name)
{ {
struct FilterList *filt; struct FilterList *filt;
...@@ -345,10 +345,9 @@ void avfilter_uninit(void) ...@@ -345,10 +345,9 @@ void avfilter_uninit(void)
static int pad_count(const AVFilterPad *pads) static int pad_count(const AVFilterPad *pads)
{ {
AVFilterPad *p = (AVFilterPad *) pads;
int count; int count;
for(count = 0; p->name; count ++) p ++; for(count = 0; pads->name; count ++) pads ++;
return count; return count;
} }
...@@ -358,7 +357,7 @@ static const char *filter_name(void *p) ...@@ -358,7 +357,7 @@ static const char *filter_name(void *p)
return filter->filter->name; return filter->filter->name;
} }
AVFilterContext *avfilter_open(AVFilter *filter, char *inst_name) AVFilterContext *avfilter_open(AVFilter *filter, const char *inst_name)
{ {
AVFilterContext *ret; AVFilterContext *ret;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册