On Sat, Feb 6, 2016 at 7:34 PM, Luca Barbato <[email protected]> wrote:
> Give how this function is used it is not really important, its purpose
> is to not break the terminal printing garbage.

That's true I guess.

> Do you have time to get me a function that is local independent?

static inline av_const int av_isprint(int c)
{
    return c > 31 && c < 127;
}
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to