Re: [libav-devel] [PATCH] vf_frei0r: refactor library loading from env variable

2014-03-04 Thread Vittorio Giovara
On Thu, Feb 27, 2014 at 1:47 PM, Vittorio Giovara vittorio.giov...@gmail.com wrote: strtok_r is not needed any more, so remove it from configure. --- Minor edits in the comments and commit log. Should the configure part be in a separate patch? Vittorio configure | 6 ++

Re: [libav-devel] [PATCH] vf_frei0r: refactor library loading from env variable

2014-03-04 Thread Luca Barbato
On 27/02/14 13:47, Vittorio Giovara wrote: strtok_r is not needed any more, so remove it from configure. --- Minor edits in the comments and commit log. Should the configure part be in a separate patch? Vittorio configure | 6 ++ libavfilter/vf_frei0r.c | 19

[libav-devel] [PATCH] vf_frei0r: refactor library loading from env variable

2014-03-04 Thread Vittorio Giovara
strtok_r is not needed any more, so remove it from configure. --- Changed do while into while, reduced scope of ptr and use ++ to skip trailing characters. Vittorio configure | 6 ++ libavfilter/vf_frei0r.c | 18 -- 2 files changed, 14 insertions(+), 10

Re: [libav-devel] [PATCH] vf_frei0r: refactor library loading from env variable

2014-03-04 Thread Luca Barbato
On 04/03/14 11:21, Vittorio Giovara wrote: strtok_r is not needed any more, so remove it from configure. --- Changed do while into while, reduced scope of ptr and use ++ to skip trailing characters. Vittorio configure | 6 ++ libavfilter/vf_frei0r.c | 18

[libav-devel] [PATCH] vf_frei0r: refactor library loading from env variable

2014-03-04 Thread Vittorio Giovara
strtok_r is not needed any more, so remove it from configure. --- Changed to use *path instead of strlen(path). Vittoio configure | 6 ++ libavfilter/vf_frei0r.c | 18 -- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/configure b/configure

[libav-devel] [PATCH] vf_frei0r: refactor library loading from env variable

2014-02-27 Thread Vittorio Giovara
strtok_r is not needed any more, so remove it from configure. --- Minor edits in the comments and commit log. Should the configure part be in a separate patch? Vittorio configure | 6 ++ libavfilter/vf_frei0r.c | 19 +-- 2 files changed, 15 insertions(+), 10