Foreign Stakeholder Needed!!!

2014-04-12 Thread Milagro Rojas Espinoza
Hello, The Project is about the exportation of 100,000 barrels of Light Crude Oil daily out from Iraq to Turkey through my client's company in Iraq at the rate of $92.00 per barrel. This amount to $9,200,000 daily. I ask for your support as a foreigner to handle this business project with my clien

cron job: media_tree daily build: OK

2014-04-12 Thread Hans Verkuil
This message is generated daily by a cron job that builds media_tree for the kernels and architectures in the list below. Results of the daily build of media_tree: date: Sun Apr 13 04:00:21 CEST 2014 git branch: test git hash: a83b93a7480441a47856dc9104bea970e84cda87 gcc versi

[yavta PATCH v3 04/11] Make struct for buffer type and name mapping usable elsewhere

2014-04-12 Thread Sakari Ailus
Signed-off-by: Sakari Ailus --- yavta.c | 28 ++-- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/yavta.c b/yavta.c index 02a7403..01f61d2 100644 --- a/yavta.c +++ b/yavta.c @@ -97,24 +97,24 @@ static bool video_is_output(struct device *dev)

[yavta PATCH v3 08/11] Print timestamp type and source for dequeued buffers

2014-04-12 Thread Sakari Ailus
Signed-off-by: Sakari Ailus --- yavta.c | 52 ++-- 1 file changed, 30 insertions(+), 22 deletions(-) diff --git a/yavta.c b/yavta.c index a0f8570..5516675 100644 --- a/yavta.c +++ b/yavta.c @@ -717,6 +717,30 @@ static void video_buffer_fill_userp

[yavta PATCH v3 09/11] Shorten dequeued buffer info print

2014-04-12 Thread Sakari Ailus
Signed-off-by: Sakari Ailus --- yavta.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/yavta.c b/yavta.c index 5516675..e81e058 100644 --- a/yavta.c +++ b/yavta.c @@ -721,13 +721,13 @@ static void get_ts_flags(uint32_t flags, const char **ts_type, const char **t

[yavta PATCH v3 11/11] Set timestamp for output buffers if the timestamp type is copy

2014-04-12 Thread Sakari Ailus
Copy timestamp type will mean the timestamp is be copied from the source to the destination buffer on mem-to-mem devices. Signed-off-by: Sakari Ailus --- yavta.c | 12 +++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/yavta.c b/yavta.c index c878c0d..9eb5e9c 100644 ---

[yavta PATCH v3 06/11] Allow passing file descriptors to yavta

2014-04-12 Thread Sakari Ailus
Signed-off-by: Sakari Ailus --- yavta.c | 57 - 1 file changed, 48 insertions(+), 9 deletions(-) diff --git a/yavta.c b/yavta.c index 78ebf21..98f5e05 100644 --- a/yavta.c +++ b/yavta.c @@ -63,6 +63,7 @@ struct buffer struct device {

[yavta PATCH v3 07/11] Timestamp source for output buffers

2014-04-12 Thread Sakari Ailus
Signed-off-by: Sakari Ailus --- yavta.c | 17 + 1 file changed, 17 insertions(+) diff --git a/yavta.c b/yavta.c index 98f5e05..a0f8570 100644 --- a/yavta.c +++ b/yavta.c @@ -72,6 +72,7 @@ struct device unsigned int width; unsigned int height; + uint32_t

[yavta PATCH v3 02/11] Provide functions for setting the buffer type and checking its validity

2014-04-12 Thread Sakari Ailus
Signed-off-by: Sakari Ailus --- yavta.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/yavta.c b/yavta.c index c7ad7b4..d8f0c59 100644 --- a/yavta.c +++ b/yavta.c @@ -220,6 +220,16 @@ static const char *v4l2_format_name(unsigned int fourcc) return name; } +static voi

[yavta PATCH v3 05/11] Provide -B option for setting the buffer type

2014-04-12 Thread Sakari Ailus
Instead of guessing the buffer type, allow setting it explicitly. Signed-off-by: Sakari Ailus --- yavta.c | 44 +--- 1 file changed, 37 insertions(+), 7 deletions(-) diff --git a/yavta.c b/yavta.c index 01f61d2..78ebf21 100644 --- a/yavta.c +++ b/yavta.

[yavta PATCH v3 01/11] Separate device object initialisation and opening

2014-04-12 Thread Sakari Ailus
Signed-off-by: Sakari Ailus --- yavta.c | 15 ++- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/yavta.c b/yavta.c index 739463d..c7ad7b4 100644 --- a/yavta.c +++ b/yavta.c @@ -220,17 +220,20 @@ static const char *v4l2_format_name(unsigned int fourcc) return

[yavta PATCH v3 03/11] Separate querying capabilities and determining buffer queue type

2014-04-12 Thread Sakari Ailus
Signed-off-by: Sakari Ailus --- yavta.c | 74 --- 1 file changed, 42 insertions(+), 32 deletions(-) diff --git a/yavta.c b/yavta.c index d8f0c59..02a7403 100644 --- a/yavta.c +++ b/yavta.c @@ -239,12 +239,8 @@ static void video_init(s

[yavta PATCH v3 00/11] Timestamp source and mem-to-mem device support

2014-04-12 Thread Sakari Ailus
Hi, This is the third version of the timestamp source and mem-to-mem device support patchset. Change since v2: - struct device type remains enum v4l2_buf_type - Added a struct which contains the 1:1 mapping between V4L2 buffer type, verbose textual representation of it (which already existed)

[yavta PATCH v3 10/11] Support copy timestamps

2014-04-12 Thread Sakari Ailus
Signed-off-by: Sakari Ailus --- yavta.c |3 +++ 1 file changed, 3 insertions(+) diff --git a/yavta.c b/yavta.c index e81e058..c878c0d 100644 --- a/yavta.c +++ b/yavta.c @@ -726,6 +726,9 @@ static void get_ts_flags(uint32_t flags, const char **ts_type, const char **ts_s case V4L2_BUF