Re: [PATCH for v4.8] cx23885/saa7134: assign q->dev to the PCI device

2016-09-19 Thread Marton Balint
On Sun, 18 Sep 2016, Hans Verkuil wrote: Fix a regression caused by commit 2bc46b3a (media/pci: convert drivers to use the new vb2_queue dev field). Three places where q->dev should be set were missed, causing a WARN. Signed-off-by: Hans Verkuil Reported-by: Marton Balint --- Tested

WARN at vb2_dma_sg_alloc since 4.8-rc1

2016-09-18 Thread Marton Balint
Hi all, Since 4.8-rc1, I am getting WARN-s when trying to capture from an AverMedia Hybrid+FM DVB-T card using dvbstream: [ cut here ] WARNING: CPU: 0 PID: 1889 at ../drivers/media/v4l2-core/videobuf2-dma-sg.c:107 vb2_dma_sg_alloc+0x284/0x4d0 [videobuf2_dma_sg] Module

[PATCH] update dvb-c scanfile hu-Digikabel

2011-05-31 Thread Marton Balint
# HG changeset patch # User Marton Balint # Date 1306844422 -7200 # Node ID 15083eb9eb32e906d2961597965320d328b3782e # Parent 7ebf32ed9124c7e58049dc9f59b514a222757b7d update dvb-c scanfile hu-Digikabel diff -r 7ebf32ed9124 -r 15083eb9eb32 util/scan/dvb-c/hu-Digikabel --- a/util/scan/dvb-c/hu

Re: [PATCH] cx88: convert core->tvaudio into an enum

2010-08-26 Thread Marton Balint
On Mon, 23 Aug 2010, lawrence rust wrote: Using an enum and removing the default case from switch statements accessing the value enables the compiler to emit a warning (enabled with -Wall) when an audio mode is not handled. This highlights an omission in the function cx88_dsp_detect_stereo_sap

[PATCH] update DVB-C scan files for hu-Digikabel

2010-08-15 Thread Marton Balint
# HG changeset patch # User Marton Balint # Date 1281875940 -7200 # Node ID 7c8fa4a65634e5cab19ace3a17d15c29e31d07e4 # Parent 16157edcb447ec50184ccb9dcefc8c6c3da88aa5 update DVB-C scan files for hu-Digikabel Signed-off-by: Marton Balint diff -r 16157edcb447 -r 7c8fa4a65634 util/scan/dvb-c/hu

[PATCH] cx88: increase BUFFER_TIMEOUT to 2 seconds

2010-02-24 Thread Marton Balint
# HG changeset patch # User Marton Balint # Date 1267027831 -3600 # Node ID 5013801372b14e3d143955c04108d450323eb2de # Parent 2e0444bf93a4a93e5e9363d43e6f6e9d451fa9bc cx88: increase BUFFER_TIMEOUT to 2 seconds From: Marton Balint When temporarily there is no video signal, sometimes it takes

DVB-C scan files for hu-Digikabel

2009-11-12 Thread Marton Balint
For the following cities: Budapest, Dorog, Hatvan, Kiskunhalas, Debrecen, Szekesfehervar, Pecs, Veszprem, Dunaujvaros, Miskolc, Gyongyos, Tatabanya, Varpalota, Nagykanizsa, Salgotarjan, Batonyterenye, Szolnok, Szentistvan, Nyiregyhaza, Gyor, Szazhalombatta, Bekescsaba, Bekes, Eger, Komlo, Oros

Re: [PATCH] Re: cx88-dsp.c: missing __divdi3 on 32bit kernel

2009-04-08 Thread Marton Balint
On Tue, 7 Apr 2009, Marton Balint wrote: > On Mon, 6 Apr 2009, Miroslav Šustek wrote: > > > Well this patch should solve it. > > > > I don't know how many samples are processed so: > > First patch is for situation when N*N fits in s32. > > Second one

Re: [PATCH] Re: cx88-dsp.c: missing __divdi3 on 32bit kernel

2009-04-06 Thread Marton Balint
On Mon, 6 Apr 2009, Miroslav Šustek wrote: > Well this patch should solve it. > > I don't know how many samples are processed so: > First patch is for situation when N*N fits in s32. > Second one uses two divisions, but doesn't have any abnormal restrictions for > N. Both patches are fine, beac

Re: [PATCH 1 of 3] cx88: Add support for stereo and sap detection for A2

2009-04-05 Thread Marton Balint
;s don't do this. Would you try the attached patch? It uses integer modulo instead of __builtin_remainder, so only basic floating point operations needs optimising, hopefully every common gcc version will be able to do it. Regards, Marton # HG changeset patch # Use

[PATCH 1 of 3] cx88: Add support for stereo and sap detection for A2

2009-03-31 Thread Marton Balint
# HG changeset patch # User Marton Balint # Date 1238461695 -7200 # Node ID 32593e0b3a9253e4f3d2cb415cb3143136f61504 # Parent ff5430b54ac291d69c1bbb35af1b80b5b7ec692e cx88: Add support for stereo and sap detection for A2 From: Marton Balint The patch implements reliable stereo and sap

[PATCH 3 of 3] cx88: avoid reprogramming every audio register on A2 stereo/mono change

2009-03-31 Thread Marton Balint
# HG changeset patch # User Marton Balint # Date 1238535357 -7200 # Node ID 119acaa1dee387960325ba637c6257af2b0fd3af # Parent d2cbecf047e8f45f49f20bd19b95dfd86c134e33 cx88: avoid reprogramming every audio register on A2 stereo/mono change From: Marton Balint This patch changes cx88_set_stereo

[PATCH 2 of 3] cx88: audio thread: if stereo detection is hw supported don't do it manually

2009-03-31 Thread Marton Balint
# HG changeset patch # User Marton Balint # Date 1238462516 -7200 # Node ID d2cbecf047e8f45f49f20bd19b95dfd86c134e33 # Parent 32593e0b3a9253e4f3d2cb415cb3143136f61504 cx88: audio thread: if stereo detection is hw supported don't do it manually From: Marton Balint The sole purpose of the

[PATCH 0 of 3] cx88: add stereo/sap detection for A2

2009-03-31 Thread Marton Balint
This patchset implements reliable stereo and sap detection for the A2 sound standard. This is achieved by processing the samples of the audio RDS fifo of the cx2388x chip. The first patch adds the support for stereo detection. The second fixes problems with the audio thread. The third eliminates t

Re: [PATCH] cx88: fix unexpected video resize when setting tv norm

2009-01-28 Thread Marton Balint
On Sat, 10 Jan 2009, Trent Piepho wrote: > On Sat, 10 Jan 2009, Marton Balint wrote: > > Cx88_set_tvnorm sets the size of the video to fixed 320x240. This is ugly at > > least, but also can cause problems, if it happens during an active video > > transfer. With this patch, cx8

Re: [PATCH] cx88: fix unexpected video resize when setting tv norm

2009-01-11 Thread Marton Balint
On Sat, 10 Jan 2009, Trent Piepho wrote: > On Sat, 10 Jan 2009, Marton Balint wrote: > > Cx88_set_tvnorm sets the size of the video to fixed 320x240. This is ugly at > > least, but also can cause problems, if it happens during an active video > > transfer. With this patch, cx8

[PATCH] cx88: fix unexpected video resize when setting tv norm

2009-01-10 Thread Marton Balint
# HG changeset patch # User Marton Balint # Date 1231614067 -3600 # Node ID 571b3176dc82a7206ade1274b9e1dcd4d8bbe4f1 # Parent 985ecd81d993b4473cb644a4c1f9e36b840cef0b cx88: fix unexpected video resize when setting tv norm From: Marton Balint Cx88_set_tvnorm sets the size of the video to fixed