Re: linux-dvb: scan util fix

2013-03-02 Thread Manu Abraham
On 2/28/13, j.uzy...@elproma.com.pl wrote: > Hi. > > I found a problem with scan and DVBS. When I research the transponder > S13E0, freq. ~11471MHz, polar. V, symrate 27500 (scan -c -a 3) I get > "WARNING: section too short: service_id == 0x669, section_length == 764, > descriptors_loop_len == 0"

Re: MFC decode failed in S5PV210 in kernel 3.8

2013-03-02 Thread Lonsn
Which firmware should be used for S5PV210 for kernel 3.8? Here: https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/commit/?id=fb5cda9c70277f633ca0c1e81b6fa7b13007bbf6 It only says for Exynos4 series : for s5p-mfc.fw- For v5 firmware used in Exynos4 series Does the firmware

[PATCH 09/14] MAINTAINERS: fix Documentation/video4linux/saa7134/

2013-03-02 Thread Cesar Eduardo Barros
That directory never existed. The intention was probably to match CARDLIST.saa7134 and README.saa7134. Cc: Mauro Carvalho Chehab Cc: linux-media@vger.kernel.org Signed-off-by: Cesar Eduardo Barros --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b/

[PATCH 10/14] MAINTAINERS: remove include/media/sh_veu.h

2013-03-02 Thread Cesar Eduardo Barros
Apparently a copy-paste mistake; the similar sh_vou.h exists, and both were added to MAINTAINERS by commit b618b69 ([media] MAINTAINERS: add entries for sh_veu and sh_vou V4L2 drivers). Cc: Guennadi Liakhovetski Cc: Mauro Carvalho Chehab Cc: linux-media@vger.kernel.org Signed-off-by: Cesar Eduar

[PATCH 04/14] MAINTAINERS: fix drivers/media/i2c/cx2341x.c

2013-03-02 Thread Cesar Eduardo Barros
This file was moved to drivers/media/common/ by commit 6259582 ([media] cx2341x: move from media/i2c to media/common). Cc: Hans Verkuil Cc: linux-media@vger.kernel.org Signed-off-by: Cesar Eduardo Barros --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAI

Re: HAUPPAUGE HVR-930C analog tv feasible ??

2013-03-02 Thread Daniel Glöckner
Hi, On Fri, Mar 01, 2013 at 09:28:54PM +0100, jande...@dommel.be wrote: > Citeren Mauro Carvalho Chehab : > >nor I succeeded > >to get any avf4910b datasheet or development kit. and now that Trident went bankrupt chances are slim that one of us ever will. > Any other suggestions/comments or anyo

[RFC PATCH 01/20] videobuf2: add gfp_flags.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil Some drivers have special memory requirements for their buffers, usually related to DMA (e.g. GFP_DMA or __GFP_DMA32). Make it possible to specify additional GFP flags for those buffers by adding a gfp_flags field to vb2_queue. Signed-off-by: Hans Verkuil --- drivers/media/v

[RFC PATCH 16/20] solo6x10: drop video_type and add proper s_std support.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil Signed-off-by: Hans Verkuil --- drivers/staging/media/solo6x10/disp.c |8 + drivers/staging/media/solo6x10/solo6x10.h |3 ++ drivers/staging/media/solo6x10/v4l2-enc.c | 33 + drivers/staging/media/solo6x10/v4l2.c | 45 ++

[RFC PATCH 14/20] solo6x10: convert the display node to vb2.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil As a consequence the ioctl op has been replaced by unlocked_ioctl. Since we are now using the core lock the locking scheme has been simplified as well. The main reason for converting this driver to vb2 was that the locking scheme in v4l2.c was hopeless. It was easier to just

[RFC PATCH 15/20] solo6x10: use monotonic timestamps.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil Signed-off-by: Hans Verkuil --- drivers/staging/media/solo6x10/v4l2-enc.c |2 +- drivers/staging/media/solo6x10/v4l2.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/media/solo6x10/v4l2-enc.c b/drivers/staging/media/solo6x10

[RFC PATCH 19/20] solo6x10: small big-endian fix.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil Signed-off-by: Hans Verkuil --- drivers/staging/media/solo6x10/p2m.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/media/solo6x10/p2m.c b/drivers/staging/media/solo6x10/p2m.c index 65911fa..1b5b129 100644 --- a/drivers/staging/media/s

[RFC PATCH 18/20] solo6x10: use correct __GFP_DMA32 flags.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil Signed-off-by: Hans Verkuil --- drivers/staging/media/solo6x10/enc.c |4 ++-- drivers/staging/media/solo6x10/p2m.c |6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/staging/media/solo6x10/enc.c b/drivers/staging/media/solo6x10/enc.c in

[RFC PATCH 13/20] solo6x10: convert encoder nodes to vb2.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil As a consequence the ioctl op has been replaced by unlocked_ioctl. Since we are now using the core lock the locking scheme has been simplified as well. Signed-off-by: Hans Verkuil --- drivers/staging/media/solo6x10/Kconfig|1 + drivers/staging/media/solo6x10/solo6x1

[RFC PATCH 11/20] solo6x10: add missing size-- to enc_write_sg.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil The enc_write_sg() function wrote data to the whole scatterlist instead of just 'size' bytes since 'size' was never decremented. Signed-off-by: Hans Verkuil --- drivers/staging/media/solo6x10/v4l2-enc.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/d

[RFC PATCH 09/20] solo6x10: move global fields in solo_enc_fh to solo_enc_dev.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil All fields in solo_enc_fh do not belong there since they refer to global properties. After moving all these fields to solo_enc_dev the solo_dev_fh struct can be removed completely. Signed-off-by: Hans Verkuil --- drivers/staging/media/solo6x10/solo6x10.h |9 + drivers/st

[RFC PATCH 10/20] solo6x10: move global fields in solo_dev_fh to solo_dev.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil All fields in solo_dev_fh do not belong there since they refer to global properties. After moving all these fields to solo_dev the solo_dev_fh struct can be removed completely. Signed-off-by: Hans Verkuil --- drivers/staging/media/solo6x10/solo6x10.h |9 + drivers/stagin

[RFC PATCH 05/20] solo6x10: add control framework.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil Signed-off-by: Hans Verkuil --- drivers/staging/media/solo6x10/solo6x10.h | 12 +- drivers/staging/media/solo6x10/tw28.c | 12 +- drivers/staging/media/solo6x10/tw28.h |1 + drivers/staging/media/solo6x10/v4l2-enc.c | 342 - driver

[RFC PATCH 12/20] solo6x10: rename the spinlock 'lock' to 'slock'.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil The next patch will add a mutex called 'lock', so we have to rename this spinlock first. Signed-off-by: Hans Verkuil --- drivers/staging/media/solo6x10/solo6x10.h |2 +- drivers/staging/media/solo6x10/v4l2-enc.c | 52 ++--- 2 files changed, 27 i

[RFC PATCH 20/20] solo6x10: also stop DMA if the SOLO_PCI_ERR_P2M_DESC is raised.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil Otherwise the computer will hang. Signed-off-by: Hans Verkuil --- drivers/staging/media/solo6x10/disp.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/media/solo6x10/disp.c b/drivers/staging/media/solo6x10/disp.c index b91a6e2..224aa4

[RFC PATCH 17/20] solo6x10: update buffer flags to fix clash with existing flags.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil Signed-off-by: Hans Verkuil --- drivers/staging/media/solo6x10/solo6x10.h |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/media/solo6x10/solo6x10.h b/drivers/staging/media/solo6x10/solo6x10.h index d24b3cd..e404ec7 100644 --- a/driv

[RFC PATCH 08/20] solo6x10: add support for prio and control event handling.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil Signed-off-by: Hans Verkuil --- drivers/staging/media/solo6x10/v4l2-enc.c | 19 +-- drivers/staging/media/solo6x10/v4l2.c | 18 -- 2 files changed, 33 insertions(+), 4 deletions(-) diff --git a/drivers/staging/media/solo6x10/v4l2-enc.c

[RFC PATCH 06/20] solo6x10: fix scheduling while atomic error.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil Signed-off-by: Hans Verkuil --- drivers/staging/media/solo6x10/v4l2-enc.c | 12 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/drivers/staging/media/solo6x10/v4l2-enc.c b/drivers/staging/media/solo6x10/v4l2-enc.c index 71d9656f..6b5b8c0 100644 -

[RFC PATCH 07/20] solo6x10: fix various format-related compliancy issues.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil - try_fmt should never return -EBUSY. - invalid pix->field values were not mapped to a valid value. - the priv field of struct v4l2_pix_format wasn't zeroed. - the try_fmt error code was not checked in set_fmt. - enum_framesizes/intervals is valid for both MJPEG and MPEG pixel

[RFC PATCH 04/20] solo6x10: add v4l2_device.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil Add support for struct v4l2_device. Signed-off-by: Hans Verkuil --- drivers/staging/media/solo6x10/core.c |8 ++-- drivers/staging/media/solo6x10/solo6x10.h |2 ++ drivers/staging/media/solo6x10/v4l2-enc.c |2 +- drivers/staging/media/solo6x10/v4l2.c

[RFC PATCH 02/20] vb2-dma-sg: add debug module option.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil This prevents the kernel log from being spammed with these messages. By turning on the debug option you will see them again. Signed-off-by: Hans Verkuil --- drivers/media/v4l2-core/videobuf2-dma-sg.c | 17 + 1 file changed, 13 insertions(+), 4 deletions(-)

[RFC PATCH 00/20] solo6x10: V4L2 compliancy fixes and major overhaul

2013-03-02 Thread Hans Verkuil
Hi all, This patch series updates the solo6x10 staging driver to a usable state. It has been tested with my Bluecherry BC-04120A MPEG4 4 port video encoder/decoder card, generously provided by Bluecherry about two years ago. Most of these fixes are the usual fall-out from testing with v4l2-comp

[RFC PATCH 03/20] solo6x10: fix querycap.

2013-03-02 Thread Hans Verkuil
From: Hans Verkuil Setup correct bus_info, let the v4l2 core set the version and add device_caps support. Signed-off-by: Hans Verkuil --- drivers/staging/media/solo6x10/v4l2-enc.c |9 - drivers/staging/media/solo6x10/v4l2.c |9 - 2 files changed, 8 insertions(+), 10

Re: V4L on android

2013-03-02 Thread Guennadi Liakhovetski
Hi Rafael On Wed, 27 Feb 2013, Rafael Coutinho wrote: > Hi, > > I'm having issues to get my video capture board to work. I see that > when I connect it is successfully mapped with the video driver: This is good, however, android out of the box doesn't support V4L. On this http://open-technolog

[PATCH 3/3] [media] s5p-mfc: Staticize symbols in s5p_mfc_opr_v5.c

2013-03-02 Thread Sachin Kamat
Some symbols are used only in this file. Make them static. Signed-off-by: Sachin Kamat --- drivers/media/platform/s5p-mfc/s5p_mfc_opr_v5.c | 103 --- 1 files changed, 52 insertions(+), 51 deletions(-) diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc_opr_v5.c b/drivers/m

[PATCH 2/3] [media] s5p-mfc: Staticize symbols in s5p_mfc_opr_v6.c

2013-03-02 Thread Sachin Kamat
Symbols used only in this file should be made static. Signed-off-by: Sachin Kamat --- drivers/media/platform/s5p-mfc/s5p_mfc_opr_v6.c | 112 --- 1 files changed, 57 insertions(+), 55 deletions(-) diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc_opr_v6.c b/drivers/media/

[PATCH 1/3] [media] s5p-mfc: Staticize some symbols in s5p_mfc_cmd_v5.c

2013-03-02 Thread Sachin Kamat
These symbols are used only in this file and can be made static. Signed-off-by: Sachin Kamat --- drivers/media/platform/s5p-mfc/s5p_mfc_cmd_v5.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc_cmd_v5.c b/drivers/media/pl

[PATCH 1/1] [media] s5p-mfc: Staticize some symbols in s5p_mfc_cmd_v6.c

2013-03-02 Thread Sachin Kamat
Since these symbols are used only in this file, they can be made static. Signed-off-by: Sachin Kamat --- drivers/media/platform/s5p-mfc/s5p_mfc_cmd_v6.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc_cmd_v6.c b/drivers/

Re: MFC decode failed in S5PV210 in kernel 3.8

2013-03-02 Thread Lonsn
于 2013/3/2 12:00, Lonsn 写道: > Hi, > I tested the MFC decode example v4l2_decode from > http://git.infradead.org/users/kmpark/public-apps and meet some problems > as following: > # ./v4l2_decode -f /dev/video5 -m /dev/video9 -d /dev/fb0 -c mpeg4 -i > shrek.m4v > V4L2 Codec decoding example applicati