Hi and thanks for testing

Víctor Paesa wrote:
> Hi,
> 
> On Sat, Mar 1, 2008 at 12:04 PM, vitor <[EMAIL PROTECTED]> 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...

-Vitor
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to