mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
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
This commit is contained in:
parent
35db407eb2
commit
05decb00cb
@ -288,7 +288,7 @@ void avfilter_draw_slice(AVFilterLink *link, int y, int 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;
|
||||
|
||||
@ -345,10 +345,9 @@ void avfilter_uninit(void)
|
||||
|
||||
static int pad_count(const AVFilterPad *pads)
|
||||
{
|
||||
AVFilterPad *p = (AVFilterPad *) pads;
|
||||
int count;
|
||||
|
||||
for(count = 0; p->name; count ++) p ++;
|
||||
for(count = 0; pads->name; count ++) pads ++;
|
||||
return count;
|
||||
}
|
||||
|
||||
@ -358,7 +357,7 @@ static const char *filter_name(void *p)
|
||||
return filter->filter->name;
|
||||
}
|
||||
|
||||
AVFilterContext *avfilter_open(AVFilter *filter, char *inst_name)
|
||||
AVFilterContext *avfilter_open(AVFilter *filter, const char *inst_name)
|
||||
{
|
||||
AVFilterContext *ret;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user