V4L2 drivers: potentially dangerous and inefficient msecs_to_jiffies() calculation

2009-09-14 Thread Andreas Mohr
lication operation as opposed to constant-aggregating it into the msecs_to_jiffies() argument and thus nicely evaporating it into nirvana. HTH, Andreas Mohr -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More major

Re: [DVB] Problems with TerraTec Cinergy T USB XE (af9 005, mt2060 problem?)

2009-09-03 Thread Andreas Golat
Hello, > I have some trouble with a Cinergy T USB XE stick. As I saw a lot of people > saying, it runs, so I thought it could be a problem that should be reported. > > I'm runnung opensuse 11.1 (2.6.27.29) with the newest v4l-driver, downloaded > some minutes ago with mercurial. The firmware is f

[DVB] Problems with TerraTec Cinergy T USB XE (af9005, mt2060 problem?)

2009-09-03 Thread Andreas Golat
Hello, I have some trouble with a Cinergy T USB XE stick. As I saw a lot of people saying, it runs, so I thought it could be a problem that should be reported. I'm runnung opensuse 11.1 (2.6.27.29) with the newest v4l-driver, downloaded some minutes ago with mercurial. The firmware is from http:

[PULL] http://linuxtv.org/hg/~obi/dmx-add-pid

2009-07-14 Thread Andreas Oberritter
changed, 186 insertions(+), 64 deletions(-) Thanks, Andreas -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PULL] http://udev.netup.ru/hg/v4l-dvb-aospan

2009-06-28 Thread Andreas Oberritter
ed in separate thread "videobuf_dvb_thread". That won't work for the av7110 driver until videobuf-dvb supports using hardware PID filters. Regards, Andreas -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org

Re: [linux-dvb] @Sky Pilot, Neotion Pilot, Checksum hacking

2009-06-21 Thread Andreas Oberritter
ksum */ > }; It's a simple XOR of all bytes with an initial value of 0x84. unsigned int calc_cs(const unsigned char *buf, unsigned int n) { unsigned int i, cs = 0x84; for (i = 0; i < n; i++) cs ^= buf[i]; return cs; } Regards, Andreas -- To unsubsc

Re: [PATCH] Use kzalloc for frontend states to have struct dvb_frontend properly initialized

2009-06-19 Thread Andreas Oberritter
uot;. > > Signed-off-by: Matthias Schwarzott I still think that this id doesn't belong into struct dvb_frontend and should be private to the drivers, but using kzalloc is a good idea in every case. Did you verify that none of the drivers does an additional memset? If so, you can

Elgato EyeTV Diversity Support in dib0700

2009-06-17 Thread Andreas Huesgen
http://linuxtv.org/hg/ and the mailing list archives but found little to no references referring to the EyeTV Diversity. I just wanted to mention it in case that the patches have been forgotten or something similar. Best Regards, Andreas Huesgen -- To unsubscribe from this list: send the line

Re: [PULL] http://udev.netup.ru/hg/v4l-dvb-aospan

2009-06-01 Thread Andreas Oberritter
like: > > #define MAX_PID 0x1ffe One would assume MAX_PID to be 0x1fff. Maybe it would be better to have two definitions to improve readability. for dvb_dmx_swfilter_packet(): #define NULL_PID 0x1fff for vmalloc: #define MAX_PID 0x1fff or #define NUM_PIDS 0x2000 ... and use (NUM_PI

Re: Re : cannot rmmod stb0899

2009-05-25 Thread Andreas Besse
he drivers? regards, Andreas Besse -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [linux-dvb] Most stable DVB-S2 PCI Card?

2009-05-23 Thread Andreas Regel
uded in that deal. New web site is still under construction: http://www.ttgoerler.de/ Regards Andreas -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

cannot rmmod stb0899

2009-05-23 Thread Andreas Besse
RROR: Module stb0899 is in use" is shown (but no application is using the device) I also tried "rmmod -w stb0899". This leads to an infinite loop and I'm not able to kill the process. How can I rmmod the stb0899 driver without rebooting the system?

Re: TT 3650

2009-03-08 Thread Andreas Kurz
7;host_alias=i686-suse-linux-gnu' 'target_alias=i586-suse-linux' 'CFLAGS=-march=i586 -mtune=i686 -fmessage-length=0 -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables' 'CXXFLAGS=-march=i586 -mtune=i686 -fmessage-length=0 -O

Re: [linuxtv-commits] [hg:v4l-dvb] Kconfig: replace DVB_FE_CUSTOMIZE to DVB_FE_CUSTOMISE

2009-03-06 Thread Andreas Oberritter
DA8290 if !DVB_FE_CUSTOMIZE Regards, Andreas -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: V4L/DVB: dvb_dmx_swfilter_section_copy_dump() assignment or addition?

2009-03-03 Thread Andreas Oberritter
wo checks can probably get removed: if (sec->tsfeedp >= DMX_MAX_SECFEED_SIZE) return 0; if (limit > DMX_MAX_SECFEED_SIZE) return -1; /* internal error should never happen */ Regards, Andreas -- To unsubscribe from this list: se

Re: TT 3650

2009-02-23 Thread Andreas Kurz
Hi again! Concerning this card (TT 3650 CI) in combination with the non-repo-driver (suggested below): which tuner should I use? Is there a special one needed? Original-Nachricht > Datum: Wed, 18 Feb 2009 10:33:53 +0100 > Von: Jean-Francois Moine > An: "Andre

Re: struct dvb_frontend not initialized correctly / random id value since MFE merge

2009-02-22 Thread Andreas Oberritter
vers should be switched to use kzalloc > instead > of kmalloc for struct dvb_frontend That's a good thing to do in any case. How about the attached patch? Regards, Andreas diff --git a/drivers/media/dvb/dvb-core/dvb_frontend.c b/drivers/media/dvb/dvb-core/dvb_frontend.c index 843

Re: PVR x50 corrupts ATSC 115 streams

2009-02-19 Thread Andreas
d a bit of luck to find a combination of cards & mainboards which work nicely together. -- Gruß Andreas -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [linux-dvb] [BUG] changeset 9029 (http://linuxtv.org/hg/v4l-dvb/rev/aa3e5cc1d833)

2009-02-18 Thread Andreas Oberritter
Oliver Endriss wrote: > I re-read the commit message, but it still does not ring any bells. > Could you please post the lockdep output? No. I didn't save it. Regards, Andreas -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body o

Re: PVR x50 corrupts ATSC 115 streams

2009-02-18 Thread Andreas
er, they *all* are recording almost perfectly. Even a HVR-1600 card that I had dismissed as broken, delivers very good recordings in the other computer. -- Gruß Andreas -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord..

TT 3650

2009-02-18 Thread Andreas Kurz
Few days ago I was asking for help: I have bought the TT 3650 CI but even after installing the drivers (as suggested in the WIKI-How-To) no card shows up in Yast. Does that mean, the card is not supported? Should I do something else? Is there another How-To around? Thank you! -- Pt! Sch

Re: [linux-dvb] [BUG] changeset 9029 (http://linuxtv.org/hg/v4l-dvb/rev/aa3e5cc1d833)

2009-02-17 Thread Andreas Oberritter
rovides basic PID filtering. Regards, Andreas -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [BUG] changeset 9029 (http://linuxtv.org/hg/v4l-dvb/rev/aa3e5cc1d833)

2009-02-16 Thread Andreas Oberritter
rger buffers in the driver. Some chipsets have very small > buffers... > > Anway, this would be a major change. All drivers must be carefully > modified and tested for an extended period. > > Meanwhile I had a look at the changeset, and I do not understand why > spin_lock_irq..

Sometimes no lock on digivox miniII (Ver3.0)

2009-02-16 Thread Andreas Witte
. Any Ideas? Regards, Andreas -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [linux-dvb] mxl5005s tuner analog support

2009-01-16 Thread Andreas
Am Freitag, 16. Januar 2009 08:35:49 schrieb Devin Heitmueller: > Hello Andreas, > > The guys at Pinnacle very kindly introduced me to someone over at > Maxlinear, and I am trying to get the datasheet. I will be looking > at the device's performance more closely over the next

Re: [linux-dvb] mxl5005s tuner analog support

2009-01-16 Thread Andreas
#x27;ll take a look at the code, as well as > the original RealTek code and see if I can get the analog side > working. > > I'll send some emails and see if I can get the datasheet - I didn't > ask for it when I started the work since I was under the impression > that the

<    1   2   3   4