Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-03-20 Thread Stefano Sabatini
On date Saturday 2015-03-14 01:36:29 +0530, Arwa Arif encoded: On Fri, Mar 13, 2015 at 9:50 PM, Stefano Sabatini stefa...@gmail.com wrote: On date Friday 2015-03-13 11:46:42 +0530, Arwa Arif encoded: I have added the variable options. I have not done the refactoring part yet. From

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-03-13 Thread arwa arif
On Fri, Mar 13, 2015 at 9:50 PM, Stefano Sabatini stefa...@gmail.com wrote: On date Friday 2015-03-13 11:46:42 +0530, Arwa Arif encoded: I have added the variable options. I have not done the refactoring part yet. From 00052c1bbe5fe87d86fcff6f5e810290468d0251 Mon Sep 17 00:00:00 2001

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-03-13 Thread arwa arif
I have added the variable options. I have not done the refactoring part yet. From 00052c1bbe5fe87d86fcff6f5e810290468d0251 Mon Sep 17 00:00:00 2001 From: Arwa Arif arwaarif1...@gmail.com Date: Fri, 13 Mar 2015 11:37:40 +0530 Subject: [PATCH] Add variables to process_command in vf_eq ---

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-03-13 Thread Stefano Sabatini
On date Friday 2015-03-13 11:46:42 +0530, Arwa Arif encoded: I have added the variable options. I have not done the refactoring part yet. From 00052c1bbe5fe87d86fcff6f5e810290468d0251 Mon Sep 17 00:00:00 2001 From: Arwa Arif arwaarif1...@gmail.com Date: Fri, 13 Mar 2015 11:37:40 +0530

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-03-11 Thread Stefano Sabatini
On date Wednesday 2015-03-11 10:55:07 +0530, Arwa Arif encoded: On Tue, Mar 10, 2015 at 2:41 PM, Stefano Sabatini stefa...@gmail.com wrote: [...] There are no parameters accepted by the expressions. I will add some examples in the doc. Look how it is done in hue. In general an

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-03-10 Thread Stefano Sabatini
On date Monday 2015-03-09 19:54:57 +0530, Arwa Arif encoded: I was going through the code, and I realized that I have made a mistake. I have corrected the code, and attached the corresponding patch. From 2ebd299b55a34914d5549f21d264e8cb7f5f605d Mon Sep 17 00:00:00 2001 From: Arwa Arif

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-03-10 Thread arwa arif
On Tue, Mar 10, 2015 at 2:41 PM, Stefano Sabatini stefa...@gmail.com wrote: On date Tuesday 2015-03-10 00:27:52 +0530, Arwa Arif encoded: On Fri, Feb 20, 2015 at 5:41 AM, Stefano Sabatini stefa...@gmail.com wrote: On date Thursday 2015-02-19 17:13:15 +0530, Arwa Arif encoded:

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-03-10 Thread Stefano Sabatini
On date Tuesday 2015-03-10 00:27:52 +0530, Arwa Arif encoded: On Fri, Feb 20, 2015 at 5:41 AM, Stefano Sabatini stefa...@gmail.com wrote: On date Thursday 2015-02-19 17:13:15 +0530, Arwa Arif encoded: Updated the patch. From 66a8c9d03995c9e7c6ccc05fb9b20756f51c17f4 Mon Sep 17

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-03-09 Thread arwa arif
I was going through the code, and I realized that I have made a mistake. I have corrected the code, and attached the corresponding patch. From 2ebd299b55a34914d5549f21d264e8cb7f5f605d Mon Sep 17 00:00:00 2001 From: Arwa Arif arwaarif1...@gmail.com Date: Mon, 9 Mar 2015 19:50:32 +0530 Subject:

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-03-09 Thread arwa arif
On Fri, Feb 20, 2015 at 5:41 AM, Stefano Sabatini stefa...@gmail.com wrote: On date Thursday 2015-02-19 17:13:15 +0530, Arwa Arif encoded: Updated the patch. From 66a8c9d03995c9e7c6ccc05fb9b20756f51c17f4 Mon Sep 17 00:00:00 2001 From: Arwa Arif arwaarif1...@gmail.com Date: Thu, 19 Feb

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-03-04 Thread Stefano Sabatini
On date Friday 2015-02-20 01:11:40 +0100, Stefano Sabatini encoded: On date Thursday 2015-02-19 17:13:15 +0530, Arwa Arif encoded: Updated the patch. From 66a8c9d03995c9e7c6ccc05fb9b20756f51c17f4 Mon Sep 17 00:00:00 2001 From: Arwa Arif arwaarif1...@gmail.com Date: Thu, 19 Feb 2015

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-02-19 Thread arwa arif
Updated the patch. From 66a8c9d03995c9e7c6ccc05fb9b20756f51c17f4 Mon Sep 17 00:00:00 2001 From: Arwa Arif arwaarif1...@gmail.com Date: Thu, 19 Feb 2015 01:26:44 +0530 Subject: [PATCH] Add process_command to eq. --- doc/filters.texi| 35 +++ libavfilter/vf_eq.c | 171

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-02-19 Thread Michael Niedermayer
On Thu, Feb 19, 2015 at 05:13:15PM +0530, arwa arif wrote: Updated the patch. doc/filters.texi| 35 ++ libavfilter/vf_eq.c | 171 ++-- libavfilter/vf_eq.h | 56 +++-- 3 files changed, 210 insertions(+), 52

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-02-19 Thread Stefano Sabatini
On date Thursday 2015-02-19 17:13:15 +0530, Arwa Arif encoded: Updated the patch. From 66a8c9d03995c9e7c6ccc05fb9b20756f51c17f4 Mon Sep 17 00:00:00 2001 From: Arwa Arif arwaarif1...@gmail.com Date: Thu, 19 Feb 2015 01:26:44 +0530 Subject: [PATCH] Add process_command to eq. ---

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-02-18 Thread arwa arif
On Sat, Jan 31, 2015 at 3:55 PM, Stefano Sabatini stefa...@gmail.com wrote: On date Friday 2015-01-30 23:17:33 +0530, Arwa Arif encoded: I have tried to add process_command in vf_eq.c. I have attached the patch. From 1d65e493a8eb247d86b0db324cb740579662706d Mon Sep 17 00:00:00 2001 From:

Re: [FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-02-18 Thread Michael Niedermayer
On Thu, Feb 19, 2015 at 02:33:43AM +0530, arwa arif wrote: On Sat, Jan 31, 2015 at 3:55 PM, Stefano Sabatini stefa...@gmail.com wrote: On date Friday 2015-01-30 23:17:33 +0530, Arwa Arif encoded: I have tried to add process_command in vf_eq.c. I have attached the patch. From

[FFmpeg-devel] [PATCH] lavfi: Add support to process_command in vf_eq.c

2015-01-30 Thread arwa arif
I have tried to add process_command in vf_eq.c. I have attached the patch. From 1d65e493a8eb247d86b0db324cb740579662706d Mon Sep 17 00:00:00 2001 From: Arwa Arif arwaarif1...@gmail.com Date: Fri, 30 Jan 2015 23:06:50 +0530 Subject: [PATCH] Add support to process_command in vf_eq.c ---