[FFmpeg-soc] [soc]: r1951 - in libavfilter: Makefile allfilters.c vf_drawbox.c
Víctor Paesa
victorpaesa at googlemail.com
Sun Mar 9 00:43:45 CET 2008
Hi,
On Sat, Mar 8, 2008 at 11:58 PM, Vitor Sessak wrote:
> Hi and thanks for testing
>
>
> Víctor Paesa wrote:
> > Hi,
> >
> > On Sat, Mar 1, 2008 at 12:04 PM, vitor wrote:
>
> > [...]
> >> Added:
> >> libavfilter/vf_drawbox.c
> >
> > [...]
> >
> >> +static void strlwr(char *str)
> >> +{
> >> + int i = 0;
> >> + while(str[i] != '\0') {
> >> + if(isupper(str[i]))
> >> + str[i] = tolower(str[i]);
> >> +
> >> + i++;
> >> + }
> >> +}
> >
> > On Cygwin this strlwr() conflicts with another one defined in string.h
> > I imagine other systems may also use this popular function name,
> > any problem to add a "ff_" prefix?
>
> I'd prefer a "box_" prefix, since it is a static function used only in
> vf_drawbox.c...
Thanks for your quick reply, I commited it as"box_strlwr()"
Regards,
Víctor
More information about the FFmpeg-soc
mailing list