[FFmpeg-devel] [PATCH 2/3] doc/examples: Enchance argument parsing in fffuzz

2016-04-11 Thread Pawel Golinski
Now any combination of arguments is allowed. --- doc/examples/fffuzz.c | 91 +++ 1 file changed, 78 insertions(+), 13 deletions(-) diff --git a/doc/examples/fffuzz.c b/doc/examples/fffuzz.c index e59066d..23cdda1 100644 --- a/doc/examples/fffuzz.c +

[FFmpeg-devel] [PATCH 3/3] doc/examples: Add thread_type flag to fffuzz

2016-04-11 Thread Pawel Golinski
--- doc/examples/fffuzz.c | 26 +- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/doc/examples/fffuzz.c b/doc/examples/fffuzz.c index 23cdda1..293c178 100644 --- a/doc/examples/fffuzz.c +++ b/doc/examples/fffuzz.c @@ -223,7 +223,9 @@ void exit_with_usage_msg(

[FFmpeg-devel] [PATCH 1/3] doc/examples: Add fffuzz example

2016-04-11 Thread Pawel Golinski
There are some afl specific macros inside, to make the example usable with afl fuzzer. --- doc/examples/fffuzz.c | 373 ++ 1 file changed, 373 insertions(+) create mode 100644 doc/examples/fffuzz.c diff --git a/doc/examples/fffuzz.c b/doc/examples/

[FFmpeg-devel] [PATCH 1/3 v2] doc/examples: Add fffuzz example

2016-04-15 Thread Pawel Golinski
There are some afl specific macros inside, to make the example usable with afl fuzzer. --- doc/examples/fffuzz.c | 370 ++ 1 file changed, 370 insertions(+) create mode 100644 doc/examples/fffuzz.c diff --git a/doc/examples/fffuzz.c b/doc/examples/

[FFmpeg-devel] [PATCH 3/3 v2] doc/examples: Add "thread_type" and "threads" flags to fffuzz

2016-04-15 Thread Pawel Golinski
--- doc/examples/fffuzz.c | 38 -- 1 file changed, 32 insertions(+), 6 deletions(-) diff --git a/doc/examples/fffuzz.c b/doc/examples/fffuzz.c index fdf97e7..50bccee 100644 --- a/doc/examples/fffuzz.c +++ b/doc/examples/fffuzz.c @@ -225,7 +225,11 @@ static void

[FFmpeg-devel] [PATCH 2/3 v2] doc/examples: Enchance argument parsing in fffuzz

2016-04-15 Thread Pawel Golinski
Now any combination of arguments is allowed. --- doc/examples/fffuzz.c | 64 --- 1 file changed, 51 insertions(+), 13 deletions(-) diff --git a/doc/examples/fffuzz.c b/doc/examples/fffuzz.c index 6672f42..fdf97e7 100644 --- a/doc/examples/fffuzz.c +